java.sql |
|
Java Source File Name | Type | Comment |
Array.java | Interface | A Java representation of the SQL ARRAY type. |
BatchUpdateException.java | Class | An exception thrown if a problem occurs during a batch update operation.
A BatchUpdateException provides additional information about the problem that
occurred, compared with a standard SQLException. |
Blob.java | Interface | A Java interface mapping for the SQL BLOB type. |
CallableStatement.java | Interface | An interface used to call Stored Procedures.
The JDBC API provides an SQL escape syntax allowing Stored Procedures to be
called in a standard way for all databases. |
Clob.java | Interface | A Java interface mapping for the SQL CLOB type. |
Connection.java | Interface | A Connection represents a link from a Java application to a database. |
DatabaseMetaData.java | Interface | An interface which provides comprehensive information about the database.
This interface is implemented by JDBC driver writers in order to provide
information about the underlying Database capabilities and the JDBC driver
capabilities taken together.
Some of the methods in this interface take String parameters which are
Patterns. |
DataTruncation.java | Class | An exception which is thrown when a JDBC driver unexpectedly truncates a data
value either when reading or when writing data. |
Date.java | Class | A Date class which can consume and produce dates in SQL Date format.
The SQL date format represents a date as yyyy-mm-dd. |
Driver.java | Interface | An Interface to a JDBC Driver.
The JDBC Driver uses URLs to specify the location of specific data. |
DriverManager.java | Class | Provides facilities for managing JDBC Drivers. |
DriverPropertyInfo.java | Class | A class holding information about Driver Properties for making a Connection. |
ParameterMetaData.java | Interface | An interface used to get information about the types and properties of
parameters in a PreparedStatement object. |
PreparedStatement.java | Interface | An interface for a Precompiled SQL Statement.
An SQL Statement is put into a PreparedStatement and is precompiled so that
it can be executed multiple times efficiently.
Setter methods are supplied in the PreparedStatement interface for the
setting of IN parameters for the Statement. |
Ref.java | Interface | A manifestation of the SQL REF type - a reference to an SQL type contained in
the database.
The SQL REF's are held in a table along with SQL structured types. |
ResultSet.java | Interface | An interface to an Object which represents a Table of Data, typically
returned as the result of a Query to a Database.
ResultSets have a Cursor which points to a current row of
data. |
ResultSetMetaData.java | Interface | Provides information about the columns in a ResultSet. |
Savepoint.java | Interface | A Savepoint is an instant during the current transaction that can be utilized
by a Rollback from the Connection.rollback method. |
SQLData.java | Interface | An interface for the custom mapping of an SQL User Defined Type (UDT) to a
Java Class. |
SQLException.java | Class | An Exception class that is used in conjunction with JDBC operations. |
SQLInput.java | Interface | 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.
SQLInput interface is used for custom mapping of SQL User Defined Types
(UDTs)to Java classes. |
SQLOutput.java | Interface | The interface for an output stream used to write attributes of an SQL User
Defined Type to the database. |
SQLPermission.java | Class | Permission relating to security access control in the java.sql package.
Currently, the only permission supported has the name "setLog". |
SQLWarning.java | Class | An exception class that holds information about Database access warnings. |
Statement.java | Interface | Interface used for executing static SQL statements and returning their
results.
By default, an object implementing the Statement interface can returns
results as ResultSets. |
Struct.java | Interface | An interface which provides facilities for mapping an SQL structured type to
Java. |
Time.java | Class | Java representation of an SQL TIME value. |
Timestamp.java | Class | A Java representation of the SQL TIMESTAMP type. |
Types.java | Class | A class which defines constants used to identify generic SQL types, also
called JDBC types. |