java.sql
Package java.sql provides the API for accessing and processing data in a data source using the Java programming language.
|
Interface Index | Class Index | Exception Index |
---|---|---|
CallableStatement Connection DatabaseMetaData Driver PreparedStatement ResultSet ResultSetMetaData Statement
|
Date DriverManager DriverPropertyInfo Numeric Time Timestamp Types
|
DataTruncation SQLException SQLWarning
|
Driver
interface represents a specific JDBC implementation for a particular database system.
Connection
represents a connection to a database.
Statement
, PreparedStatement
, and CallableStatement
interfaces support the execution of various kinds of SQL statements.
ResultSet
is a set of results returned by the database in response to a SQL query.
ResultSetMetaData
interface provides metadata about a result set, while DatabaseMetaData
provides metadata about the database.