package
java.sql
Provides a standard interface for accessing SQL-based databases.
more...
Interfaces
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. |
Classes
Date |
A Date class which can consume and produce dates in SQL Date format. |
DriverManager |
Provides facilities for managing JDBC Drivers. |
DriverPropertyInfo |
A class holding information about Driver Properties for making a Connection. |
SQLPermission |
Permission relating to security access control in the java.sql package. |
Time |
Java representation of an SQL TIME value. |
Timestamp |
A Java representation of the SQL TIMESTAMP type. |
Types |
A class which defines constants used to identify generic SQL types, also
called JDBC types. |
Exceptions
BatchUpdateException |
An exception thrown if a problem occurs during a batch update operation. |
DataTruncation |
An exception which is thrown when a JDBC driver unexpectedly truncates a data
value either when reading or when writing data. |
SQLException |
An Exception class that is used in conjunction with JDBC operations. |
SQLWarning |
An exception class that holds information about Database access warnings. |