|
Interface Summary |
| Array |
The mapping in the Java programming language for the SQL type
ARRAY.
|
| Blob |
The representation (mapping) in
the JavaTM programming
language of an SQL
BLOB value. |
| CallableStatement |
The interface used to execute SQL stored procedures. |
| Clob |
The mapping in the JavaTM programming language
for the SQL CLOB type.
|
| Connection |
A connection (session) with a specific
database. |
| DatabaseMetaData |
Comprehensive information about the database as a whole.
|
| Driver |
The interface that every driver class must implement.
|
| ParameterMetaData |
An object that can be used to get information about the types
and properties of the parameters in a PreparedStatement object. |
| PreparedStatement |
An object that represents a precompiled SQL statement.
|
| Ref |
The mapping in the Java programming language of an SQL REF
value, which is a reference to an SQL structured type value in the database.
|
| ResultSet |
A table of data representing a database result set, which
is usually generated by executing a statement that queries the database.
|
| ResultSetMetaData |
An object that can be used to get information about the types
and properties of the columns in a ResultSet object.
|
| Savepoint |
The representation of a savepoint, which is a point within
the current transaction that can be referenced from the
Connection.rollback method. |
| SQLData |
The interface used for the custom mapping of an SQL user-defined type (UDT) to
a class in the Java programming language. |
| SQLInput |
An input stream that contains a stream of values representing an
instance of an SQL structured type or an SQL distinct type.
|
| SQLOutput |
The output stream for writing the attributes of a user-defined
type back to the database. |
| Statement |
The object used for executing a static SQL statement
and returning the results it produces.
|
| Struct |
The standard mapping in the Java programming language for an SQL
structured type. |