CallableStatement | An interface used to call Stored Procedures. |
Connection | A connection represents a link from a Java application to a database. |
DataSource | An interface for the creation of Connection objects which represent a
connection to a database. |
DatabaseMetaData | An interface which provides comprehensive information about the database
management system and its supported features. |
ParameterMetaData | An interface used to get information about the types and properties of
parameters in a PreparedStatement . |
PreparedStatement | An interface for a precompiled SQL Statement. |
ResultSet | An interface for an object which represents a database table entry, returned
as the result of the query to the database. |
ResultSetMetaData | Provides information about the columns returned in a ResultSet . |
RowSet | An interface which provides means to access data which
persists on a database. |
RowSetMetaData | An interface which provides facilities for getting information about the
columns in a RowSet . |
Statement | Interface used for executing static SQL statements to retrieve query results. |