Package com.sun.sql.rowset

Provides classes and interfaces for handling result sets returned by databases.

See:
          Description

Interface Summary
CachedRowSetX The extened interface that all implementations of CachedRowSetX must implement.
RowSetMetaDataX An object that contains information about the columns in a RowSet object.
SyncResolverX Extends javax.sql.rowset.spi.SyncResolver so that SQLExceptions for each conflict can be retrieved.
 

Class Summary
BaseRowSetX An abstract class extending javax.sql.rowset.BaseRowSet which contains changes necessary to support using RowSets as java beans.
CachedRowSetXImpl The reference implementation of the CachedRowSetX interface.
CachedRowSetXImpl5 The reference implementation of the CachedRowSetX interface.
Log Log utility for Sun's rowset extensions
RowSetMetaDataXImpl Implements RowSetMetaDataX
 

Package com.sun.sql.rowset Description

Provides classes and interfaces for handling result sets returned by databases.

These classes are capable of retrieving, updating, inserting and deleting rows from resultsets in a disconnected (CachedRowSetX) or connected (JdbcRowSet) manner.

The CachedRowSetX interface is an extension of the CachedRowSet interface. See CachedRowSet for how to use JdbcRowSets. See CachedRowSetX for the details of the extensions in this package.

This package also contains the following (see the documentation each interface/class for details).

Package Specification

(none)

Related Documentation