| |
|
| javax.sql.RowSetInternal
RowSetInternal | public interface RowSetInternal (Code) | | A rowset object presents itself to a reader or writer as an instance of RowSetInternal.
The RowSetInternal interface contains additional methods that let the reader or writer access
and modify the internal state of the rowset.
|
getConnection | public Connection getConnection() throws SQLException(Code) | | Get the Connection passed to the rowset.
the Connection passed to the rowset, or null if none exception: SQLException - - if a database-access error occurs. |
getOriginal | public ResultSet getOriginal() throws SQLException(Code) | | Returns a result set containing the original value of the rowset. The cursor is positioned before the
first row in the result set. Only rows contained in the result set returned by getOriginal() are said to
have an original value.
the original value of the rowset exception: SQLException - - if a database-access error occurs. |
getOriginalRow | public ResultSet getOriginalRow() throws SQLException(Code) | | Returns a result set containing the original value of the current row. If the current row has no original
value an empty result set is returned. If there is no current row a SQLException is thrown.
the original value of the row exception: SQLException - - if a database-access error occurs. |
getParams | public Object[] getParams() throws SQLException(Code) | | Get the parameters that were set on the rowset.
an array of parameters exception: SQLException - - if a database-access error occurs. |
setMetaData | public void setMetaData(RowSetMetaData rowSetMetaData) throws SQLException(Code) | | Set the rowset's metadata.
Parameters: rowSetMetaData - - metadata object exception: SQLException - - if a database-access error occurs. |
|
|
|