Interface Summary |
Array |
JDBC 2.0
The mapping in the Java programming language for the SQL type
ARRAY . |
Blob |
JDBC 2.0
The representation (mapping) in
the JavaTM programming
language of an SQL
BLOB . |
CallableStatement |
The interface used to execute SQL
stored procedures. |
Clob |
JDBC 2.0
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. |
PreparedStatement |
An object that represents a precompiled SQL statement. |
Ref |
JDBC 2.0
A reference to an SQL structured type value in the database. |
ResultSet |
A ResultSet provides access to a table of data. |
ResultSetMetaData |
An object that can be used to find out about the types
and properties of the columns in a ResultSet. |
SQLData |
JDBC 2.0
The interface used for the custom mapping of SQL user-defined types. |
SQLInput |
JDBC 2.0
A input stream that contains a stream of values representing an
instance of an SQL structured or distinct type. |
SQLOutput |
JDBC 2.0
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 obtaining the results produced by it. |
Struct |
JDBC 2.0
The standard mapping for an SQL
structured type. |
Provides the JDBC package. JDBC is a standard API for executing SQL
statements. It contains classes and interfaces for creating SQL
statements, and retrieving the results of executing those statements
against relational databases. JDBC has a framework whereby different
``drivers'' can be installed dynamically to access different databases.