public abstract class RowSetFactory extends Object
javax.sql.RowSet implementations.
 
RowSetFactory factory = RowSetFactory.newInstance(); RowSet rs = factory.newCachedRowSet();
| Modifier and Type | Method and Description | 
|---|---|
abstract DataSource | 
getDataSource()
Deprecated.  
Get the DataSource object that will be automatically set on
 any RowSet instance created from this RowSetFactory. 
 | 
abstract String | 
getDataSourceName()
Deprecated.  
Get the DataSource name that will be automatically set on
 any RowSet instance created from this RowSetFactory. 
 | 
abstract String | 
getPassword()
Deprecated.  
Get the password that will be automatically set on
 any RowSet instance created from this RowSetFactory. 
 | 
abstract String | 
getUrl()
Deprecated.  
Get the URL that will be automatically set on
 any RowSet instance created from this RowSetFactory. 
 | 
abstract String | 
getUsername()
Deprecated.  
Get the username that will be automatically set on
 any RowSet instance created from this RowSetFactory. 
 | 
abstract WLCachedRowSet | 
newCachedRowSet()
Deprecated.  
Creates a new  
WLCachedRowSet instance. | 
abstract FilteredRowSet | 
newFilteredRowSet()
Deprecated.  
Creates a new  
FilteredRowSet instance. | 
static RowSetFactory | 
newInstance()
Deprecated.  
Creates a new  
RowSetFactory instance. | 
abstract JdbcRowSet | 
newJdbcRowSet()
Deprecated.  
Creates a new  
JdbcRowSet instance. | 
abstract JoinRowSet | 
newJoinRowSet()
Deprecated.  
Creates a new  
JoinRowSet instance. | 
abstract WebRowSet | 
newWebRowSet()
Deprecated.  
Creates a new  
WebRowSet instance. | 
abstract void | 
setDataSource(DataSource ds)
Deprecated.  
Set the DataSource object that will be automatically set on
 any RowSet instance created from this RowSetFactory. 
 | 
abstract void | 
setDataSourceName(String s)
Deprecated.  
Set the DataSource name that will be automatically set on
 any RowSet instance created from this RowSetFactory. 
 | 
abstract void | 
setPassword(String s)
Deprecated.  
Set the password that will be automatically set on
 any RowSet instance created from this RowSetFactory. 
 | 
abstract void | 
setUrl(String s)
Deprecated.  
Set the URL that will be automatically set on
 any RowSet instance created from this RowSetFactory. 
 | 
abstract void | 
setUsername(String s)
Deprecated.  
Set the username that will be automatically set on
 any RowSet instance created from this RowSetFactory. 
 | 
public static RowSetFactory newInstance()
RowSetFactory instance.public abstract WLCachedRowSet newCachedRowSet()
WLCachedRowSet instance.WLCachedRowSet instancepublic abstract JoinRowSet newJoinRowSet()
JoinRowSet instance.public abstract JdbcRowSet newJdbcRowSet()
JdbcRowSet instance.public abstract FilteredRowSet newFilteredRowSet()
FilteredRowSet instance.public abstract WebRowSet newWebRowSet()
WebRowSet instance.public abstract String getDataSourceName()
public abstract void setDataSourceName(String s)
public abstract String getUsername()
public abstract void setUsername(String s)
public abstract String getPassword()
public abstract void setPassword(String s)
public abstract String getUrl()
public abstract void setUrl(String s)
public abstract DataSource getDataSource()
public abstract void setDataSource(DataSource ds)