| javax.sql.RowSetInternal
RowSetInternal | public interface RowSetInternal (Code) | | An interface provided by a RowSet object to either a RowSetReader or a
RowSetWriter, providing facilities to read and update the internal state of
the RowSet.
|
getConnection | public Connection getConnection() throws SQLException(Code) | | Gets the Connection associated with this RowSet object.
the Connection throws: SQLException - if there is a problem accessing the database. |
getOriginal | public ResultSet getOriginal() throws SQLException(Code) | | Gets the ResultSet that was the original (unmodified) content of the
RowSet.
The ResultSet cursor is positioned before the first row of data
the ResultSet that contained the original data value of theRowSet throws: SQLException - if there is a problem accessing the database. |
getOriginalRow | public ResultSet getOriginalRow() throws SQLException(Code) | | Gets the original value of the current row only. If the current row did
not have an original value, then an empty value is returned.
a ResultSet containing the value of the current row only. throws: SQLException - if there is a problem accessing the database, or if thecursor is not on a valid row (before first, after last orpointing to the insert row). |
getParams | public Object[] getParams() throws SQLException(Code) | | Gets the parameter values that have been set for this RowSet's command.
an Object array containing the values of parameters that havebeen set. throws: SQLException - if there is a problem accessing the database. |
setMetaData | public void setMetaData(RowSetMetaData theMetaData) throws SQLException(Code) | | Sets RowSetMetaData for this RowSet. The RowSetMetaData is used by a
RowSetReader to set values giving information about the RowSet's columns.
Parameters: theMetaData - a RowSetMetaData holding the metadata about the RowSet'scolumns. throws: SQLException - if there is a problem accessing the database. |
|
|