Uses of Interface java.sql.ResultSet

Uses in package javax.sql

Methods with return type java.sql.ResultSet

ResultSet
ResultSet

Uses in package java.sql

Methods with return type java.sql.ResultSet

ResultSet
This method executes a prepared SQL query and returns its ResultSet.
ResultSet
This method executes the specified SQL SELECT statement and returns a (possibly empty) ResultSet with the results of the query.
ResultSet
DatabaseMetaData.getAttributes(String catalog, String schemaPattern, String typePattern, String attributePattern)
ResultSet
DatabaseMetaData.getBestRowIdentifier(String catalog, String schema, String tableName, int scope, boolean nullable)
This method returns the best set of columns for uniquely identifying a row.
ResultSet
This method returns the list of database catalogs as a ResultSet with one column - TABLE_CAT - that is the name of the catalog.
ResultSet
DatabaseMetaData.getColumnPrivileges(String catalog, String schema, String tableName, String columnPattern)
This method returns the access rights that have been granted to the requested columns.
ResultSet
DatabaseMetaData.getColumns(String catalog, String schemaPattern, String tablePattern, String columnPattern)
This method returns a list of the tables columns for the requested tables.
ResultSet
DatabaseMetaData.getCrossReference(String primaryCatalog, String primarySchema, String primaryTableName, String foreignCatalog, String foreignSchema, String foreignTableName)
This method returns a description of how one table imports another table's primary key as a foreign key.
ResultSet
DatabaseMetaData.getExportedKeys(String catalog, String schema, String tableName)
This method returns a list of the table's which use this table's primary key as a foreign key.
ResultSet
ResultSet
DatabaseMetaData.getImportedKeys(String catalog, String schema, String tableName)
This method returns a list of the table's foreign keys.
ResultSet
DatabaseMetaData.getIndexInfo(String catalog, String schema, String tableName, boolean unique, boolean approximate)
This method returns information about a tables indices and statistics.
ResultSet
DatabaseMetaData.getPrimaryKeys(String catalog, String schema, String tableName)
This method returns a list of a table's primary key columns.
ResultSet
DatabaseMetaData.getProcedureColumns(String catalog, String schemaPattern, String procedurePattern, String columnPattern)
This method returns a list of the parameter and result columns for the requested stored procedures.
ResultSet
DatabaseMetaData.getProcedures(String catalog, String schemaPattern, String procedurePattern)
This method returns a list of all the stored procedures matching the specified pattern in the given schema and catalog.
ResultSet
Returns the elements in the array as a ResultSet.
ResultSet
This method returns the result set of the SQL statement that was executed.
ResultSet
Array.getResultSet(Map> map)
This method returns the elements in the array as a ResultSet.
ResultSet
Array.getResultSet(long start, int count)
This method returns a portion of the array as a ResultSet.
ResultSet
Array.getResultSet(long start, int count, Map> map)
This method returns a portion of the array as a ResultSet.
ResultSet
This method returns the list of database schemas as a ResultSet, with one column - TABLE_SCHEM - that is the name of the schema.
ResultSet
DatabaseMetaData.getSuperTables(String catalog, String schemaPattern, String tablePattern)
ResultSet
DatabaseMetaData.getSuperTypes(String catalog, String schemaPattern, String typePattern)
ResultSet
DatabaseMetaData.getTablePrivileges(String catalog, String schemaPattern, String tablePattern)
This method returns the access rights that have been granted to the requested tables.
ResultSet
This method returns the list of database table types as a ResultSet with one column - TABLE_TYPE - that is the name of the table type.
ResultSet
DatabaseMetaData.getTables(String catalog, String schemaPattern, String tablePattern, String[] types)
This method returns a list of the requested table as a ResultSet with the following columns:
  1. TABLE_CAT - The catalog the table is in, which may be null.
  2. TABLE_SCHEM - The schema the table is in, which may be null.
  3. TABLE_NAME - The name of the table.
  4. TABLE_TYPE - A string describing the table type.
ResultSet
This method returns a list of the SQL types supported by this database.
ResultSet
DatabaseMetaData.getUDTs(String catalog, String schemaPattern, String typePattern, int[] types)
This method returns the list of user defined data types in use.
ResultSet
DatabaseMetaData.getVersionColumns(String catalog, String schema, String tableName)
This method returns the set of columns that are automatically updated when the row is update.