org.hsqldb.jdbc |
|
Java Source File Name | Type | Comment |
jdbcBlob.java | Class | The representation (mapping) in the JavaTM
programming language of an SQL BLOB value. |
jdbcCallableStatement.java | Class |
The interface used to execute SQL stored procedures. |
jdbcClob.java | Class | The mapping in the JavaTM programming
language for the SQL CLOB type. |
jdbcColumnMetaData.java | Class | Provides a site for holding the ResultSetMetaData for individual ResultSet
columns. |
jdbcConnection.java | Class |
A connection (session) with a specific database. |
jdbcDatabaseMetaData.java | Class | Comprehensive information about the database as a whole.
This interface is implemented by driver vendors to let users know the
capabilities of a Database Management System (DBMS) in combination with
the driver based on JDBCTM technology
("JDBC driver") that is used with it. |
jdbcDataSource.java | Class | A factory for connections to the physical data source that this
DataSource object represents. |
jdbcDataSourceFactory.java | Class | A JNDI ObjectFactory for creating
jdbcDataSource jdbcDatasource object instances. |
jdbcParameterMetaData.java | Class | An object that can be used to get information about the types and
properties of the parameters in a PreparedStatement object. |
jdbcPreparedStatement.java | Class |
An object that represents a precompiled SQL statement. |
jdbcResultSet.java | Class |
A table of data representing a database result set, which
is usually generated by executing a statement that queries the database.
A ResultSet object maintains a cursor pointing
to its current row of data. |
jdbcResultSetMetaData.java | Class |
An object that can be used to get information about the types
and properties of the columns in a ResultSet object.
The following code fragment creates the ResultSet
object rs, creates the ResultSetMetaData object rsmd,
and uses rsmd to find out how many columns rs has and whether the
first column in rs can be used in a WHERE clause.
ResultSet rs = stmt.executeQuery("SELECT a, b, c FROM TABLE2");
ResultSetMetaData rsmd = rs.getMetaData();
int numberOfColumns = rsmd.getColumnCount();
boolean b = rsmd.isSearchable(1);
HSQLDB-Specific Information:
HSQLDB supports a subset of the ResultSetMetaData interface.
The JDBC specification for ResultSetMetaData is in part very
vague. |
jdbcSavepoint.java | Class | The representation of a savepoint, which is a point within
the current transaction that can be referenced from the
Connection.rollback method. |
jdbcStatement.java | Class |
The object used for executing a static SQL statement
and returning the results it produces.
By default, only one ResultSet object per Statement
object can be open at the same time. |
jdbcStubs.java | Class | Provides a site for conditional compilation of stub classes supporting
the JDBC 2 imterface implementation under the JDBC 1 runtime. |
Util.java | Class | Provides driver constants and a gateway from internal HsqlExceptions to
external SQLExceptions. |