|
Oracle Fusion Middleware Java API Reference for Oracle WebLogic Server 12c (12.1.3) Part Number E41849-02 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object weblogic.jdbc.rowset.BaseRowSet weblogic.jdbc.rowset.CachedRowSetImpl
public class CachedRowSetImpl
CachedRowSet is an implementation of the JDBC RowSet API (javax.sql.RowSet). This implementation provides a disconnected RowSet. The CachedRowSet is populated with data from a JDBC query or an existing JDBC ResultSet. At this point, the RowSet has all of the data in memory. The CachedRowSet uses the familiar ResultSet methods for reading, inserting, updating, and deleteting data. These operations only change the current copy of the data in memory. The data is not written back to the database until the acceptChanges method is called. The CachedRowSet uses optimistic concurrency when data is written back to the database. By default, the SQL UPDATE statement verifies that the data in the database matches what was read into the CachedRowSet. It is possible to select other Optimistic policies with the setOptimisticPolicy method.
Field Summary |
---|
Fields inherited from interface javax.sql.rowset.spi.SyncResolver |
---|
DELETE_ROW_CONFLICT, INSERT_ROW_CONFLICT, NO_ROW_CONFLICT, UPDATE_ROW_CONFLICT |
Constructor Summary | |
---|---|
CachedRowSetImpl()
Deprecated. Constructs a new default CachedRowSetImpl object with the capacity to hold 100 rows. |
|
CachedRowSetImpl(Hashtable env)
Deprecated. Provides a CachedRowSetImpl instance with the same default properties as the zero parameter constructor. |
Method Summary | ||
---|---|---|
void |
acceptChanges()
Deprecated. Propagates all row update, insert, and delete changes to the underlying data source backing this CachedRowSetImpl object. |
|
void |
acceptChanges(Connection con)
Deprecated. Propagates all row update, insert, and delete changes to the data source backing this CachedRowSetImpl object using the given Connection object. |
|
void |
cancelRowUpdates()
Deprecated. Rolls back any updates made to the current row of this CachedRowSetImpl object and notifies listeners that a row has changed. |
|
protected Object |
clone()
Deprecated. Returns a new RowSet object containing by the same data as this CachedRowSetImpl object. |
|
void |
close()
Deprecated. Closes this CachedRowSetImpl objecy and releases any resources it was using. |
|
void |
commit()
Deprecated. Commits all changes performed by the acceptChanges() methods |
|
CachedRowSet |
createCopy()
Deprecated. Creates a RowSet object that is a deep copy of this CachedRowSetImpl object's data, including constraints. |
|
CachedRowSet |
createCopyNoConstraints()
Deprecated. Creates a CachedRowSet object that is a copy of this CachedRowSetImpl object's data only. |
|
CachedRowSet |
createCopySchema()
Deprecated. Creates a RowSet object that is a copy of this CachedRowSetImpl object's table structure and the constraints only. |
|
RowSet |
createShared()
Deprecated. Returns a new RowSet object backed by the same data as that of this CachedRowSetImpl object and sharing a set of cursors with it. |
|
void |
deleteRow()
Deprecated. Deletes the current row from this CachedRowSetImpl object and notifies listeners registered with this rowset that a row has changed. |
|
void |
execute()
Deprecated. Populates this CachedRowSetImpl object with data |
|
void |
execute(Connection con)
Deprecated. Populates this CachedRowSetImpl object with data, using the given connection to produce the result set from which data will be read. |
|
Map |
getCurrentRow()
Deprecated. Returns the insert row or the current row of this CachedRowSetImplobject. |
|
Predicate |
getFilter()
Deprecated. FilteredRowSetImpl - Retrieve the filter active for this FilteredRowSet |
|
|
getObject(int columnIndex,
Class<T> type)
Deprecated. |
|
|
getObject(String columnLabel,
Class<T> type)
Deprecated. |
|
ResultSet |
getOriginal()
Deprecated. Returns a result set containing the original value of the rowset. |
|
ResultSet |
getOriginalRow()
Deprecated. Returns a result set containing the original value of the current row only. |
|
int |
getPageSize()
Deprecated. This is the getter function for the size of the page. |
|
Map |
getRow(int index)
Deprecated. Returns the number of the current row in this CachedRowSetImpl object. |
|
void |
insertRow()
Deprecated. Inserts the contents of this CachedRowSetImpl object's insert row into this rowset immediately following the current row. |
|
boolean |
isWrapperFor(Class<?> iface)
Deprecated. |
|
void |
moveToCurrentRow()
Deprecated. Moves the cursor for this CachedRowSetImpl object to the current row. |
|
void |
moveToInsertRow()
Deprecated. Moves the cursor for this CachedRowSetImpl object to the insert row. |
|
boolean |
nextPage()
Deprecated. The nextPage gets the next page, that is a CachedRowSetImpl object containing the number of rows specified by page size. |
|
void |
populate(ResultSet rs)
Deprecated. Populates this CachedRowSetImpl object with data from the given ResultSet object. |
|
void |
populate(ResultSet rs,
int i)
Deprecated. Populates this CachedRowSet object with data from the given ResultSet object. |
|
boolean |
previousPage()
Deprecated. Retrieves the data present in the page prior to the page from where it is called. |
|
void |
readXml(InputStream iStream)
Deprecated. |
|
void |
readXml(Reader reader)
Deprecated. |
|
void |
readXml(XMLInputStream xis)
Deprecated. |
|
void |
refreshRow()
Deprecated. Sets the current row with its original value and marks the row as not updated, thus undoing any changes made to the row since the last call to the methods updateRow or deleteRow. |
|
void |
release()
Deprecated. Releases the current contents of this CachedRowSetImpl object and sends a rowSetChanged event object to all registered listeners. |
|
void |
restoreOriginal()
Deprecated. Restores this CachedRowSetImpl object to its original state, that is, its state before the last set of changes. |
|
void |
rollback()
Deprecated. Rolls back all changes performed by the acceptChanges() methods |
|
void |
rollback(Savepoint s)
Deprecated. Rolls back all changes performed by the acceptChanges() to the last Savepoint transaction marker. |
|
void |
rowSetPopulated(RowSetEvent rse,
int i)
Deprecated. Notifies registered listeners that a RowSet object in the given RowSetEvent object has populated a number of additional rows. |
|
void |
setFilter(Predicate p)
Deprecated. FilteredRowSetImpl - Apply the predicate for this filter |
|
void |
setOriginalRow()
Deprecated. void setOriginalRow() - Marks the current row in this rowset as being an original row. |
|
void |
setPageSize(int i)
Deprecated. This is the setter function for setting the size of the page, which specifies how many rows have to be retrived at a time. |
|
void |
setSorter(Comparator s)
Deprecated. FilteredRowSetImpl - Apply the predicate for this filter |
|
int |
size()
Deprecated. Returns the number of rows in this CachedRowSetImpl object. |
|
Collection |
toCollection(int column)
Deprecated. |
|
void |
undoDelete()
Deprecated. void undoDelete() - Cancels deletion of the current row and notifies listeners that a row has changed. |
|
void |
undoInsert()
Deprecated. Immediately removes the current row from this CachedRowSetImpl object if the row has been inserted, and also notifies listeners the a row has changed. |
|
void |
undoUpdate()
Deprecated. Immediately reverses the last update operation if the row has been modified. |
|
|
unwrap(Class<T> iface)
Deprecated. |
|
void |
updateRow()
Deprecated. Marks the current row of this CachedRowSetImpl object as updated and notifies listeners registered with this rowset that the row has changed. |
|
void |
writeXml(OutputStream oStream)
Deprecated. |
|
void |
writeXml(ResultSet rs,
OutputStream oStream)
Deprecated. |
|
void |
writeXml(ResultSet rs,
Writer writer)
Deprecated. |
|
void |
writeXml(Writer oWriter)
Deprecated. |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface weblogic.jdbc.rowset.WLCachedRowSet |
---|
executeAndGuessTableName, executeAndGuessTableNameAndPrimaryKeys, getDataSource, getRows, getRows, isComplete, loadXML, moveToUpdateRow, populate, setDataSource, setRowSetSynced, setRowSynced, writeXML, writeXML |
Methods inherited from interface javax.sql.rowset.CachedRowSet |
---|
columnUpdated, columnUpdated, getKeyColumns, getRowSetWarnings, getShowDeleted, getSyncProvider, getTableName, setKeyColumns, setMetaData, setShowDeleted, setSyncProvider, setTableName, toCollection, toCollection |
Methods inherited from interface javax.sql.rowset.Joinable |
---|
getMatchColumnIndexes, getMatchColumnNames, setMatchColumn, setMatchColumn, setMatchColumn, setMatchColumn, unsetMatchColumn, unsetMatchColumn, unsetMatchColumn, unsetMatchColumn |
Methods inherited from interface javax.sql.rowset.CachedRowSet |
---|
columnUpdated, columnUpdated, getKeyColumns, getRowSetWarnings, getShowDeleted, getSyncProvider, getTableName, setKeyColumns, setMetaData, setShowDeleted, setSyncProvider, setTableName, toCollection, toCollection |
Methods inherited from interface javax.sql.rowset.Joinable |
---|
getMatchColumnIndexes, getMatchColumnNames, setMatchColumn, setMatchColumn, setMatchColumn, setMatchColumn, unsetMatchColumn, unsetMatchColumn, unsetMatchColumn, unsetMatchColumn |
Methods inherited from interface javax.sql.rowset.CachedRowSet |
---|
columnUpdated, columnUpdated, getKeyColumns, getRowSetWarnings, getShowDeleted, getSyncProvider, getTableName, setKeyColumns, setMetaData, setShowDeleted, setSyncProvider, setTableName, toCollection, toCollection |
Methods inherited from interface javax.sql.rowset.Joinable |
---|
getMatchColumnIndexes, getMatchColumnNames, setMatchColumn, setMatchColumn, setMatchColumn, setMatchColumn, unsetMatchColumn, unsetMatchColumn, unsetMatchColumn, unsetMatchColumn |
Methods inherited from interface weblogic.jdbc.rowset.SortedRowSet |
---|
getSorter |
Methods inherited from interface weblogic.jdbc.rowset.WLRowSetInternal |
---|
setCachedRows |
Methods inherited from interface javax.sql.RowSetInternal |
---|
getConnection, getParams, setMetaData |
Methods inherited from interface weblogic.jdbc.rowset.WLCachedRowSet |
---|
executeAndGuessTableName, executeAndGuessTableNameAndPrimaryKeys, getDataSource, getRows, getRows, isComplete, loadXML, moveToUpdateRow, populate, setDataSource, setRowSetSynced, setRowSynced, writeXML, writeXML |
Methods inherited from interface javax.sql.rowset.CachedRowSet |
---|
columnUpdated, columnUpdated, getKeyColumns, getRowSetWarnings, getShowDeleted, getSyncProvider, getTableName, setKeyColumns, setMetaData, setShowDeleted, setSyncProvider, setTableName, toCollection, toCollection |
Methods inherited from interface javax.sql.rowset.Joinable |
---|
getMatchColumnIndexes, getMatchColumnNames, setMatchColumn, setMatchColumn, setMatchColumn, setMatchColumn, unsetMatchColumn, unsetMatchColumn, unsetMatchColumn, unsetMatchColumn |
Methods inherited from interface javax.sql.rowset.CachedRowSet |
---|
columnUpdated, columnUpdated, getKeyColumns, getRowSetWarnings, getShowDeleted, getSyncProvider, getTableName, setKeyColumns, setMetaData, setShowDeleted, setSyncProvider, setTableName, toCollection, toCollection |
Methods inherited from interface javax.sql.rowset.Joinable |
---|
getMatchColumnIndexes, getMatchColumnNames, setMatchColumn, setMatchColumn, setMatchColumn, setMatchColumn, unsetMatchColumn, unsetMatchColumn, unsetMatchColumn, unsetMatchColumn |
Methods inherited from interface weblogic.jdbc.rowset.SortedRowSet |
---|
getSorter |
Methods inherited from interface javax.sql.rowset.spi.SyncResolver |
---|
getConflictValue, getConflictValue, getStatus, nextConflict, previousConflict, setResolvedValue, setResolvedValue |
Constructor Detail |
---|
public CachedRowSetImpl()
public CachedRowSetImpl(Hashtable env)
Method Detail |
---|
public void populate(ResultSet rs) throws SQLException
populate
in interface CachedRowSet
SQLException
public void populate(ResultSet rs, int i) throws SQLException
populate
in interface CachedRowSet
SQLException
public void execute() throws SQLException
execute
in interface RowSet
SQLException
public void execute(Connection con) throws SQLException
execute
in interface CachedRowSet
SQLException
public void acceptChanges() throws SyncProviderException
acceptChanges
in interface CachedRowSet
SyncProviderException
public void acceptChanges(Connection con) throws SyncProviderException
acceptChanges
in interface CachedRowSet
SyncProviderException
public void insertRow() throws SQLException
insertRow
in interface ResultSet
SQLException
public void undoInsert() throws SQLException
undoInsert
in interface CachedRowSet
SQLException
public void deleteRow() throws SQLException
deleteRow
in interface ResultSet
SQLException
public void undoDelete() throws SQLException
undoDelete
in interface CachedRowSet
SQLException
public void updateRow() throws SQLException
updateRow
in interface ResultSet
SQLException
public void undoUpdate() throws SQLException
undoUpdate
in interface CachedRowSet
SQLException
public void cancelRowUpdates() throws SQLException
cancelRowUpdates
in interface ResultSet
SQLException
public void setOriginalRow() throws SQLException
setOriginalRow
in interface CachedRowSet
SQLException
public void restoreOriginal() throws SQLException
restoreOriginal
in interface CachedRowSet
SQLException
public ResultSet getOriginal() throws SQLException
getOriginal
in interface CachedRowSet
getOriginal
in interface RowSetInternal
SQLException
public ResultSet getOriginalRow() throws SQLException
getOriginalRow
in interface CachedRowSet
getOriginalRow
in interface RowSetInternal
SQLException
public void refreshRow() throws SQLException
refreshRow
in interface ResultSet
SQLException
public void moveToInsertRow()
moveToInsertRow
in interface ResultSet
public void moveToCurrentRow()
moveToCurrentRow
in interface ResultSet
public void setFilter(Predicate p)
setFilter
in interface FilteredRowSet
public Predicate getFilter()
getFilter
in interface FilteredRowSet
public void setSorter(Comparator s)
setSorter
in interface SortedRowSet
s
- Comparator instance used to decide the order of rows.public int size()
size
in interface CachedRowSet
size
in class BaseRowSet
public Map getCurrentRow() throws SQLException
getCurrentRow
in interface WLCachedRowSet
SQLException
- if the current RowSet position is not a
valid rowpublic Map getRow(int index) throws SQLException
getRow
in interface WLCachedRowSet
index
- row index into the row set. Valid values are [0 ...
row.size() -1]
SQLException
- if the index is not a valid rowpublic Collection toCollection(int column) throws SQLException
toCollection
in interface CachedRowSet
SQLException
public void readXml(XMLInputStream xis) throws IOException, SQLException
IOException
SQLException
public void readXml(Reader reader) throws SQLException
readXml
in interface WebRowSet
SQLException
public void readXml(InputStream iStream) throws SQLException, IOException
readXml
in interface WebRowSet
SQLException
IOException
public void writeXml(Writer oWriter) throws SQLException
writeXml
in interface WebRowSet
SQLException
public void writeXml(OutputStream oStream) throws SQLException, IOException
writeXml
in interface WebRowSet
SQLException
IOException
public void writeXml(ResultSet rs, Writer writer) throws SQLException
writeXml
in interface WebRowSet
SQLException
public void writeXml(ResultSet rs, OutputStream oStream) throws SQLException, IOException
writeXml
in interface WebRowSet
SQLException
IOException
protected Object clone()
clone
in class Object
public RowSet createShared() throws SQLException
createShared
in interface CachedRowSet
SQLException
public CachedRowSet createCopy() throws SQLException
createCopy
in interface CachedRowSet
SQLException
public CachedRowSet createCopySchema() throws SQLException
createCopySchema
in interface CachedRowSet
SQLException
public CachedRowSet createCopyNoConstraints() throws SQLException
createCopyNoConstraints
in interface CachedRowSet
SQLException
public void close()
close
in interface AutoCloseable
close
in interface ResultSet
public void release() throws SQLException
release
in interface CachedRowSet
SQLException
public boolean previousPage() throws SQLException
previousPage
in interface CachedRowSet
SQLException
public boolean nextPage() throws SQLException
nextPage
in interface CachedRowSet
SQLException
public int getPageSize()
getPageSize
in interface CachedRowSet
public void setPageSize(int i) throws SQLException
setPageSize
in interface CachedRowSet
SQLException
public void rowSetPopulated(RowSetEvent rse, int i) throws SQLException
rowSetPopulated
in interface CachedRowSet
SQLException
public void rollback(Savepoint s) throws SQLException
rollback
in interface CachedRowSet
SQLException
public void rollback() throws SQLException
rollback
in interface CachedRowSet
SQLException
public void commit() throws SQLException
commit
in interface CachedRowSet
SQLException
public <T> T unwrap(Class<T> iface) throws SQLException
unwrap
in interface Wrapper
SQLException
public boolean isWrapperFor(Class<?> iface) throws SQLException
isWrapperFor
in interface Wrapper
SQLException
public <T> T getObject(int columnIndex, Class<T> type) throws SQLException
getObject
in interface ResultSet
SQLException
public <T> T getObject(String columnLabel, Class<T> type) throws SQLException
getObject
in interface ResultSet
SQLException
|
Copyright 1996, 2014, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Oracle Fusion Middleware Java API Reference for Oracle WebLogic Server 12c (12.1.3) Part Number E41849-02 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |