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() Get the Connection passed to the rowset. | |
getOriginal() Returns a result set containing the original value of the rowset. | |
getOriginalRow() Returns a result set containing the original value of the current row only. | |
getParams() Get the parameters that were set on the rowset. | |
setMetaData(RowSetMetaData md) Set the rowset's metadata. |
public java.lang.Object[]getParams() throws java.sql.SQLException
java.sql.SQLException
- if a database-access error occurs.public java.sql.ConnectiongetConnection() throws java.sql.SQLException
java.sql.SQLException
- if a database-access error occurs.public voidsetMetaData(RowSetMetaData md) throws java.sql.SQLException
a
- metadata objectjava.sql.SQLException
- if a database-access error occurs.public java.sql.ResultSetgetOriginal() throws java.sql.SQLException
java.sql.SQLException
- if a database-access error occurs.public java.sql.ResultSetgetOriginalRow() throws java.sql.SQLException
java.sql.SQLException
- if a database-access error occurs.