| Array |
A Java representation of the SQL ARRAY type. |
| Blob |
A Java interface mapping for the SQL BLOB type. |
| CallableStatement |
An interface used to call Stored Procedures. |
| Clob |
A Java interface mapping for the SQL CLOB type. |
| Connection |
A Connection represents a link from a Java application to a database. |
| DatabaseMetaData |
An interface which provides comprehensive information about the database. |
| Driver |
An Interface to a JDBC Driver. |
| ParameterMetaData |
An interface used to get information about the types and properties of
parameters in a PreparedStatement object. |
| PreparedStatement |
An interface for a Precompiled SQL Statement. |
| Ref |
A manifestation of the SQL REF type - a reference to an SQL type contained in
the database. |
| ResultSet |
An interface to an Object which represents a Table of Data, typically
returned as the result of a Query to a Database. |
| ResultSetMetaData |
Provides information about the columns in a ResultSet. |
| Savepoint |
A Savepoint is an instant during the current transaction that can be utilized
by a Rollback from the Connection.rollback method. |
| SQLData |
An interface for the custom mapping of an SQL User Defined Type (UDT) to a
Java Class. |
| SQLInput |
The SQLInput interface defines operations which apply to a type of input
stream which carries a series of values which represent an instance of an SQL
structured type or SQL distinct type. |
| SQLOutput |
The interface for an output stream used to write attributes of an SQL User
Defined Type to the database. |
| Statement |
Interface used for executing static SQL statements and returning their
results. |
| Struct |
An interface which provides facilities for mapping an SQL structured type to
Java. |