Top Description Constructors Methods
com.sun.rowset

public final Class RowSetFactoryImpl

extends Object
implements RowSetFactory
Class Inheritance
All Implemented Interfaces
javax.sql.rowset.RowSetFactory
Imports
java.sql.SQLException, javax.sql.rowset.CachedRowSet, .FilteredRowSet, .JdbcRowSet, .JoinRowSet, .WebRowSet, .RowSetFactory

This is the implementation specific class for the javax.sql.rowset.spi.RowSetFactory. This is the platform default implementation for the Java SE platform.
Author
Lance Andersen
Version
1.7

Constructor Summary

AccessConstructor and Description
public

Method Summary

Modifier and TypeMethod and Description
public CachedRowSet
createCachedRowSet()

Implements javax.sql.rowset.RowSetFactory.createCachedRowSet.

Creates a new instance of a CachedRowSet.

public FilteredRowSet
createFilteredRowSet()

Implements javax.sql.rowset.RowSetFactory.createFilteredRowSet.

Creates a new instance of a FilteredRowSet.

public JdbcRowSet
createJdbcRowSet()

Implements javax.sql.rowset.RowSetFactory.createJdbcRowSet.

Creates a new instance of a JdbcRowSet.

public JoinRowSet
createJoinRowSet()

Implements javax.sql.rowset.RowSetFactory.createJoinRowSet.

Creates a new instance of a JoinRowSet.

public WebRowSet
createWebRowSet()

Implements javax.sql.rowset.RowSetFactory.createWebRowSet.

Creates a new instance of a WebRowSet.

Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Constructor Detail

RowSetFactoryImplback to summary
public RowSetFactoryImpl()

Method Detail

createCachedRowSetback to summary
public CachedRowSet createCachedRowSet() throws SQLException

Implements javax.sql.rowset.RowSetFactory.createCachedRowSet.

Doc from javax.sql.rowset.RowSetFactory.createCachedRowSet.

Creates a new instance of a CachedRowSet.

Returns:CachedRowSet

A new instance of a CachedRowSet.

Exceptions
SQLException:
if a CachedRowSet cannot be created.
createFilteredRowSetback to summary
public FilteredRowSet createFilteredRowSet() throws SQLException

Implements javax.sql.rowset.RowSetFactory.createFilteredRowSet.

Doc from javax.sql.rowset.RowSetFactory.createFilteredRowSet.

Creates a new instance of a FilteredRowSet.

Returns:FilteredRowSet

A new instance of a FilteredRowSet.

Exceptions
SQLException:
if a FilteredRowSet cannot be created.
createJdbcRowSetback to summary
public JdbcRowSet createJdbcRowSet() throws SQLException

Implements javax.sql.rowset.RowSetFactory.createJdbcRowSet.

Doc from javax.sql.rowset.RowSetFactory.createJdbcRowSet.

Creates a new instance of a JdbcRowSet.

Returns:JdbcRowSet

A new instance of a JdbcRowSet.

Exceptions
SQLException:
if a JdbcRowSet cannot be created.
createJoinRowSetback to summary
public JoinRowSet createJoinRowSet() throws SQLException

Implements javax.sql.rowset.RowSetFactory.createJoinRowSet.

Doc from javax.sql.rowset.RowSetFactory.createJoinRowSet.

Creates a new instance of a JoinRowSet.

Returns:JoinRowSet

A new instance of a JoinRowSet.

Exceptions
SQLException:
if a JoinRowSet cannot be created.
createWebRowSetback to summary
public WebRowSet createWebRowSet() throws SQLException

Implements javax.sql.rowset.RowSetFactory.createWebRowSet.

Doc from javax.sql.rowset.RowSetFactory.createWebRowSet.

Creates a new instance of a WebRowSet.

Returns:WebRowSet

A new instance of a WebRowSet.

Exceptions
SQLException:
if a WebRowSet cannot be created.