InterviewSolution
Saved Bookmarks
| 1. |
How Can I Determine Where A Given Table Is Referenced Via Foreign Keys? |
|
Answer» DatabaseMetaData.getExportedKeys() returns a RESULTSET with DATA similar to that returned by DATABASE MetaData .getImported Keys(), except that the information relates to other TABLES that reference the given table as a foreign key container. DatabaseMetaData.getExportedKeys() returns a ResultSet with data similar to that returned by Database MetaData .getImported Keys(), except that the information relates to other tables that reference the given table as a foreign key container. |
|