Java Platform 1.2
Beta 4

Uses of Interface
java.sql.ResultSet

Packages that use ResultSet
java.sql Provides the JDBC package.  
 

Uses of ResultSet in java.sql
 

Methods in java.sql that return ResultSet
 ResultSet Array.getResultSet()
          Materialize the item designated by the Array as a ResultSet that contains a row for each element of the Array.
 ResultSet Array.getResultSet(Map map)
          Materialize the item designated by the Array as a ResultSet that contains a row for each element of the Array.
 ResultSet Array.getResultSet(long index, int count)
          Materialize the designated sub-array as a ResultSet that contains a row for each element of the sub-array.
 ResultSet Array.getResultSet(long index, int count, Map map)
          Materialize the designated sub-array as a ResultSet that contains a row for each element of the sub-array.
 ResultSet PreparedStatement.executeQuery()
          A prepared SQL query is executed and its ResultSet is returned.
 ResultSet Statement.executeQuery(String sql)
          Execute a SQL statement that returns a single ResultSet.
 ResultSet Statement.getResultSet()
          getResultSet returns the current result as a ResultSet.
 ResultSet DatabaseMetaData.getProcedures(String catalog, String schemaPattern, String procedureNamePattern)
          Get a description of stored procedures available in a catalog.
 ResultSet DatabaseMetaData.getProcedureColumns(String catalog, String schemaPattern, String procedureNamePattern, String columnNamePattern)
          Get a description of a catalog's stored procedure parameters and result columns.
 ResultSet DatabaseMetaData.getTables(String catalog, String schemaPattern, String tableNamePattern, String[] types)
          Get a description of tables available in a catalog.
 ResultSet DatabaseMetaData.getSchemas()
          Get the schema names available in this database.
 ResultSet DatabaseMetaData.getCatalogs()
          Get the catalog names available in this database.
 ResultSet DatabaseMetaData.getTableTypes()
          Get the table types available in this database.
 ResultSet DatabaseMetaData.getColumns(String catalog, String schemaPattern, String tableNamePattern, String columnNamePattern)
          Get a description of table columns available in a catalog.
 ResultSet DatabaseMetaData.getColumnPrivileges(String catalog, String schema, String table, String columnNamePattern)
          Get a description of the access rights for a table's columns.
 ResultSet DatabaseMetaData.getTablePrivileges(String catalog, String schemaPattern, String tableNamePattern)
          Get a description of the access rights for each table available in a catalog.
 ResultSet DatabaseMetaData.getBestRowIdentifier(String catalog, String schema, String table, int scope, boolean nullable)
          Get a description of a table's optimal set of columns that uniquely identifies a row.
 ResultSet DatabaseMetaData.getVersionColumns(String catalog, String schema, String table)
          Get a description of a table's columns that are automatically updated when any value in a row is updated.
 ResultSet DatabaseMetaData.getPrimaryKeys(String catalog, String schema, String table)
          Get a description of a table's primary key columns.
 ResultSet DatabaseMetaData.getImportedKeys(String catalog, String schema, String table)
          Get a description of the primary key columns that are referenced by a table's foreign key columns (the primary keys imported by a table).
 ResultSet DatabaseMetaData.getExportedKeys(String catalog, String schema, String table)
          Get a description of the foreign key columns that reference a table's primary key columns (the foreign keys exported by a table).
 ResultSet DatabaseMetaData.getCrossReference(String primaryCatalog, String primarySchema, String primaryTable, String foreignCatalog, String foreignSchema, String foreignTable)
          Get a description of the foreign key columns in the foreign key table that reference the primary key columns of the primary key table (describe how one table imports another's key.)
 ResultSet DatabaseMetaData.getTypeInfo()
          Get a description of all the standard SQL types supported by this database.
 ResultSet DatabaseMetaData.getIndexInfo(String catalog, String schema, String table, boolean unique, boolean approximate)
          Get a description of a table's indices and statistics.
 ResultSet DatabaseMetaData.getUDTs(String catalog, String schemaPattern, String typeNamePattern, int[] types)
          JDBC 2.0 Get a description of the user-defined types defined in a particular schema.
 


Java Platform 1.2
Beta 4

Submit a bug or feature
Submit comments/suggestions about new javadoc look
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.
This documentation was generated with a post-Beta4 version of Javadoc.