javax.sql.RowSetInternal |
An interface provided by a RowSet
object to let either a RowSetReader
or a RowSetWriter
access its internal state, thereby
providing facilities to read and update the state of the RowSet
.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Gets the connection associated with this
RowSet object. | |||||||||||
Gets the
ResultSet that was the original (unmodified) content of
the RowSet . | |||||||||||
Gets the original value of the current row only.
| |||||||||||
Gets the parameter values that have been set for this
RowSet 's
command. | |||||||||||
Sets
RowSetMetaData for this RowSet . |
Gets the connection associated with this RowSet
object.
null
.SQLException | if there is a problem accessing the database. |
---|
Gets the ResultSet
that was the original (unmodified) content of
the RowSet
.
The ResultSet
's cursor is positioned before the first row of
data.
ResultSet
that contained the original data value of
the RowSet
.SQLException | if there is a problem accessing the database. |
---|
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.
ResultSet
containing the value of the current row only.SQLException | if there is a problem accessing the database, or if the cursor is not on a valid row (before the first row, after the last one or pointing to the insert row). |
---|
Gets the parameter values that have been set for this RowSet
's
command.
SQLException | if there is a problem accessing the database. |
---|
Sets RowSetMetaData
for this RowSet
. The RowSetMetaData
is used by a RowSetReader
to set values giving
information about the RowSet
's columns.
theMetaData | holds the metadata about the RowSet 's columns. |
---|
SQLException | if there is a problem accessing the database. |
---|