Method getImportedKeys(String catalog, String schema, String table)
Return type: java.sql.ResultSet
Member of: java.sql.DatabaseMetaData
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 ResultSet rs = dbmd.getImportedKeys(null, "", "users" );
2 ResultSet rs = md.getImportedKeys(null, null, "ADDRESSBOOK");
3 rs = dmd.getImportedKeys(catalog, schema, table);
4 foreignKeys = dbMeta.getImportedKeys(null, dbSchema, tableName);
5 foreignKeys = dbMeta.getImportedKeys(null, dbSchema, tableName);
6 getDetailedInfo(dbmd.getImportedKeys(null, ht.get("TABLE_SCHEM").toString(), ht.get("TABLE_NAME").toString()));
7 ResultSet colList = dbmeta.getImportedKeys(null, null, tableName);
8 foreignKeys = dbmd.getImportedKeys(catalog, schema, tableName);
9 set = metadata.getImportedKeys(currentCatlog, currentSchema, tableName);
10 ResultSet rsCols = dbData.getImportedKeys(null, lookupSchemaName, null);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.