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