Method getIndexInfo(String catalog, String schema, String table, boolean unique, boolean approximate)
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.getIndexInfo(null,null,"pg_class",false,false);
2 rs = dmd.getIndexInfo(null, null, "users", false, true);
3 ResultSet r = connection.getMetaData().getIndexInfo(catalog, schema, table, false, true);
4 indexRs = getMetaData().getIndexInfo(_catalog, _schema, table.getSqlName(), false, true);
5 ResultSet ind = dMeta.getIndexInfo(null, null, name, false,
6 set = metadata.getIndexInfo(currentCatlog, currentSchema, tableName, false, false);
7 rsCols = dbData.getIndexInfo(null, lookupSchemaName, curTableName, false, true);
8 rs = dmd.getIndexInfo(catalog, schema, table, unique, approximate);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.