javax.sql |
|
Java Source File Name | Type | Comment |
ConnectionEvent.java | Class | An Event object which is sent when specific events happen on a
PooledConnection object. |
ConnectionEventListener.java | Interface | An interface used to receive events generated by a
PooledConnection .
This interface would typically be implemented by a component which implements
Connection Pooling (a Connection Pool Manager). |
ConnectionPoolDataSource.java | Interface | An interface for the creation of PooledConnection objects. |
DataSource.java | Interface | An interface for the creation of Connection objects which represent a
connection to a database. |
PooledConnection.java | Interface | An interface which provides facilities for handling connections to a database
which are pooled.
Typically, a PooledConnection is recycled when it is no longer required by an
application, rather than being closed and discarded. |
RowSet.java | Interface | A RowSet is an interface which provides access to data being sent from/to a
database and which extends the functionality of ResultSet into a form that
can be used as a JavaBeans component, perhaps being used in a visual
programming environment.
Facilities are provided for get/set of properties relating to the Database
and the SQL Command and for getting/setting data within the Rows represented
by the RowSet. |
RowSetEvent.java | Class | An event which is sent when specific events happen to a RowSet object. |
RowSetInternal.java | Interface | An interface provided by a RowSet object to either a RowSetReader or a
RowSetWriter, providing facilities to read and update the internal state of
the RowSet. |
RowSetListener.java | Interface | An interface used to send notification of events occurring in a RowSet. |
RowSetMetaData.java | Interface | An interface which provides facilities for getting information about the
columns in a RowSet.
RowSetMetaData extends ResultSetMetaData, adding new operations for carrying
out value sets.
Application code would not normally call this interface directly. |
RowSetReader.java | Interface | An interface which provides functionality for a disconnected RowSet to get
data from a data source into its rows. |
RowSetWriter.java | Interface | An interface which provides functionality for a disconnected RowSet to put
data updates back to the data source from which the RowSet was originally
populated. |
XAConnection.java | Interface | An interface that is used to support the participation of a database
connection in distributed transactions. |
XADataSource.java | Interface | An interface for the creation of XAConnection objects. |