ResultSet |
PreparedStatement.executeQuery() |
Executes the SQL query in the PreparedStatement and returns the
ResultSet generated by the query.
|
ResultSet |
Statement.executeQuery(String sql) |
Executes a supplied SQL statement.
|
ResultSet |
DatabaseMetaData.getAttributes(String catalog,
String schemaPattern,
String typeNamePattern,
String attributeNamePattern) |
Returns a ResultSet describing a subset of the attributes of a
specified SQL User Defined Type (UDT) for a specified schema and catalog.
|
ResultSet |
DatabaseMetaData.getBestRowIdentifier(String catalog,
String schema,
String table,
int scope,
boolean nullable) |
Returns a list of a table's optimal set of columns that uniquely
identify the rows.
|
ResultSet |
DatabaseMetaData.getCatalogs() |
Returns the set of catalog names available in this database.
|
ResultSet |
DatabaseMetaData.getClientInfoProperties() |
Returns a list of the client info properties of the driver.
|
ResultSet |
DatabaseMetaData.getColumnPrivileges(String catalog,
String schema,
String table,
String columnNamePattern) |
Returns a description of access rights for a table's columns.
|
ResultSet |
DatabaseMetaData.getColumns(String catalog,
String schemaPattern,
String tableNamePattern,
String columnNamePattern) |
Returns a description of table columns available in a specified catalog.
|
ResultSet |
DatabaseMetaData.getCrossReference(String primaryCatalog,
String primarySchema,
String primaryTable,
String foreignCatalog,
String foreignSchema,
String foreignTable) |
Returns a list of foreign key columns in a given foreign key table that
reference the primary key columns of a supplied primary key table.
|
ResultSet |
DatabaseMetaData.getExportedKeys(String catalog,
String schema,
String table) |
Returns a list of the foreign key columns that reference the primary key
columns of a specified table (the foreign keys exported by a table).
|
ResultSet |
DatabaseMetaData.getFunctionColumns(String catalog,
String schemaPattern,
String functionNamePattern,
String columnNamePattern) |
Returns a description according to the given catalog's system or user
function parameters and return type.
|
ResultSet |
DatabaseMetaData.getFunctions(String catalog,
String schemaPattern,
String functionNamePattern) |
Returns a description of the system and user functions available
according to the given catalog.
|
ResultSet |
Statement.getGeneratedKeys() |
Returns auto generated keys created by executing this statement.
|
ResultSet |
DatabaseMetaData.getImportedKeys(String catalog,
String schema,
String table) |
Returns a list columns in a table that are both primary keys and
referenced by the table's foreign key columns (that is, the primary keys
imported by a table).
|
ResultSet |
DatabaseMetaData.getIndexInfo(String catalog,
String schema,
String table,
boolean unique,
boolean approximate) |
Returns a list of indices and statistics for a specified table.
|
ResultSet |
DatabaseMetaData.getPrimaryKeys(String catalog,
String schema,
String table) |
Returns a list of the primary key columns of a specified table.
|
ResultSet |
DatabaseMetaData.getProcedureColumns(String catalog,
String schemaPattern,
String procedureNamePattern,
String columnNamePattern) |
Returns a list of parameter and result columns for the stored procedures
belonging to a specified catalog.
|
ResultSet |
DatabaseMetaData.getProcedures(String catalog,
String schemaPattern,
String procedureNamePattern) |
Returns a list of the stored procedures available in a specified catalog.
|
ResultSet |
Array.getResultSet() |
Returns a ResultSet object which holds the entries of the SQL
ARRAY associated with this array.
|
ResultSet |
Array.getResultSet(long index,
int count) |
Returns a ResultSet object that holds the entries of a subarray,
beginning at a particular index and comprising up to count
successive entries.
|
ResultSet |
Array.getResultSet(long index,
int count,
Map<String,Class<?>> map) |
Returns a ResultSet object that holds the entries of a subarray,
beginning at a particular index and comprising up to count
successive entries.
|
ResultSet |
Array.getResultSet(Map<String,Class<?>> map) |
Returns a ResultSet object which holds the entries of the SQL
ARRAY associated with this array.
|
ResultSet |
Statement.getResultSet() |
Gets the current result.
|
ResultSet |
DatabaseMetaData.getSchemas() |
Returns a list of the schema names in the database.
|
ResultSet |
DatabaseMetaData.getSchemas(String catalog,
String schemaPattern) |
Returns the schema names ordered by TABLE_CATALOG and TABLE_SCHEMA.
|
ResultSet |
DatabaseMetaData.getSuperTables(String catalog,
String schemaPattern,
String tableNamePattern) |
Returns a listing of the hierarchies of tables in a specified schema in
the database.
|
ResultSet |
DatabaseMetaData.getSuperTypes(String catalog,
String schemaPattern,
String typeNamePattern) |
Returns the User Defined Type (UDT) hierarchies for a given schema.
|
ResultSet |
DatabaseMetaData.getTablePrivileges(String catalog,
String schemaPattern,
String tableNamePattern) |
Returns a description of access rights for each table present in a
catalog.
|
ResultSet |
DatabaseMetaData.getTables(String catalog,
String schemaPattern,
String tableNamePattern,
String[] types) |
Returns a description of the tables in a specified catalog.
|
ResultSet |
DatabaseMetaData.getTableTypes() |
Returns a list of table types supported by the database.
|
ResultSet |
DatabaseMetaData.getTypeInfo() |
Get a list of the standard SQL types supported by this database.
|
ResultSet |
DatabaseMetaData.getUDTs(String catalog,
String schemaPattern,
String typeNamePattern,
int[] types) |
Returns a description of the User Defined Types (UDTs) defined in a given
schema, which includes the types DISTINCT, STRUCT and
JAVA_OBJECT.
|
ResultSet |
DatabaseMetaData.getVersionColumns(String catalog,
String schema,
String table) |
Returns which of a table's columns are automatically updated when any
value in a row is updated.
|