![]() |
|
Contents |
Public Member Functions | |
| Connection | getConnection () throws SQLException |
| Gets the Connection associated with this RowSet object. | |
| ResultSet | getOriginal () throws SQLException |
| Gets the ResultSet that was the original (unmodified) content of the RowSet. | |
| ResultSet | getOriginalRow () throws SQLException |
| Gets the original value of the current row only. | |
| Object[] | getParams () throws SQLException |
| Gets the parameter values that have been set for this RowSet's command. | |
| void | setMetaData (RowSetMetaData theMetaData) throws SQLException |
| Sets RowSetMetaData for this RowSet. | |
| Connection getConnection | ( | ) | throws SQLException |
Gets the Connection associated with this RowSet object.
| SQLException | if there is a problem accessing the database. |
Implemented in CachedRowSetImpl.
| ResultSet getOriginal | ( | ) | throws SQLException |
Gets the ResultSet that was the original (unmodified) content of the RowSet.
The ResultSet cursor is positioned before the first row of data
| SQLException | if there is a problem accessing the database. |
Implemented in CachedRowSetImpl.
| ResultSet getOriginalRow | ( | ) | throws SQLException |
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.
| SQLException | if there is a problem accessing the database, or if the cursor is not on a valid row (before first, after last or pointing to the insert row). |
Implemented in CachedRowSetImpl.
| Object [] getParams | ( | ) | throws SQLException |
Gets the parameter values that have been set for this RowSet's command.
| SQLException | if there is a problem accessing the database. |
| void setMetaData | ( | RowSetMetaData | theMetaData | ) | throws SQLException |
Sets RowSetMetaData for this RowSet.
The RowSetMetaData is used by a RowSetReader to set values giving information about the RowSet's columns.
| theMetaData | a RowSetMetaData holding the metadata about the RowSet's columns. |
| SQLException | if there is a problem accessing the database. |
Implemented in CachedRowSetImpl.