Uses of Package
javax.sql
Package | Description |
---|---|
javax.sql |
Provides the API for server side data source access and processing from
the Java™ programming language.
|
javax.sql.rowset |
Standard interfaces and base classes for JDBC
RowSet
implementations. |
javax.sql.rowset.spi |
The standard classes and interfaces that a third party vendor has to
use in its implementation of a synchronization provider.
|
-
Classes in javax.sql used by javax.sql Class Description CommonDataSource Interface that defines the methods which are common betweenDataSource
,XADataSource
andConnectionPoolDataSource
.ConnectionEvent AnEvent
object that provides information about the source of a connection-related event.ConnectionEventListener An object that registers to be notified of events generated by aPooledConnection
object.PooledConnection An object that provides hooks for connection pool management.PooledConnectionBuilder A builder created from aConnectionPoolDataSource
object, used to establish a connection to the database that thedata source
object represents.RowSet The interface that adds support to the JDBC API for the JavaBeans™ component model.RowSetEvent AnEvent
object generated when an event occurs to aRowSet
object.RowSetInternal The interface that aRowSet
object implements in order to present itself to aRowSetReader
orRowSetWriter
object.RowSetListener An interface that must be implemented by a component that wants to be notified when a significant event happens in the life of aRowSet
object.RowSetMetaData An object that contains information about the columns in aRowSet
object.StatementEvent AStatementEvent
is sent to allStatementEventListener
s which were registered with aPooledConnection
.StatementEventListener An object that registers to be notified of events that occur on PreparedStatements that are in the Statement pool.XAConnection An object that provides support for distributed transactions.XAConnectionBuilder A builder created from aXADataSource
object, used to establish a connection to the database that thedata source
object represents. -
Classes in javax.sql used by javax.sql.rowset Class Description RowSet The interface that adds support to the JDBC API for the JavaBeans™ component model.RowSetEvent AnEvent
object generated when an event occurs to aRowSet
object.RowSetListener An interface that must be implemented by a component that wants to be notified when a significant event happens in the life of aRowSet
object.RowSetMetaData An object that contains information about the columns in aRowSet
object. -
Classes in javax.sql used by javax.sql.rowset.spi Class Description RowSet The interface that adds support to the JDBC API for the JavaBeans™ component model.RowSetReader The facility that a disconnectedRowSet
object calls on to populate itself with rows of data.RowSetWriter An object that implements theRowSetWriter
interface, called a writer.