<docbook><section><title>ClassOPLCachedRowSet</title><bridgehead class="http://www.w3.org/1999/xhtml:h3">Class <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink></bridgehead>
<bridgehead class="http://www.w3.org/1999/xhtml:h4"><ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> Classes <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink></bridgehead>
<para>A <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> is a disconnected, serializable, scrollable container for tabular data.
 A primary purpose of the <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> class is to provide a representation of a JDBC <ulink url="ResultSet">ResultSet</ulink> that can be passed between different components of a remote application.
 For example, a <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> can be used to send the result of a query executed by an Enterprise <ulink url="JavaBeans">JavaBeans</ulink> component running in a server environment over a network to a client running in a web browser.
 A second use for <ulink url="OPLCachedRowSets">OPLCachedRowSets</ulink> is to provide scrolling and updating for <ulink url="ResultSets">ResultSets</ulink> that don&#39;t provide these capabilities themselves.
 A <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> can be used to augment the capabilities of a JDBC driver that doesn&#39;t have full support for scrolling and updating.
 Finally, a <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> can be used to provide Java applications with access to tabular data in an environment such as a thin client or PDA, where it would be inappropriate to use a JDBC driver due to resource limitations or security considerations.
 The <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> class provides a means to &quot;get rows in&quot; and &quot;get changed rows out&quot; without the need to implement the full JDBC API.</para><para>A <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> object can contain data retrieved via a JDBC driver or data from some other source, such as a spreadsheet.
 Both a <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> object and its metadata can be created from scratch.
 A component that acts as a factory for rowsets can use this capability to create a rowset containing data from non-JDBC data sources.</para><para>The term &#39;disconnected&#39; implies that a <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> only makes use of a JDBC connection briefly while data is being read from the database and used to populate it with rows, and again while updated rows are being propagated back to the underlying database.
 During the remainder of its lifetime, a <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> object isn&#39;t associated with an underlying database connection.
 A <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> object can simply be thought of as a disconnected set of rows that are being cached outside of a data source.
 Since all data is cached in memory, <ulink url="OPLCachedRowSets">OPLCachedRowSets</ulink> are not appropriate for extremely large data sets.</para><para>The contents of a <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> may be updated and the updates can be propagated to an underlying data source.
 <ulink url="OPLCachedRowSets">OPLCachedRowSets</ulink> support an optimistic concurrency control mechanism - no locks are maintained in the underlying database during disconnected use of the rowset.
 Both the original value and current value of the <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> are maintained for use by the optimistic routines.</para><bridgehead class="http://www.w3.org/1999/xhtml:h4">Synopsis</bridgehead>
<programlisting>public class OPLCachedRowSet extends BaseRowSet implements RowSetInternal,Serializable,Cloneable {
  // Public Constructors
  public OPLCachedRowSet() throws java.sql.SQLException;
  // Public Methods
  public void finalize() throws java.lang.Throwable;
  public void setCommand(java.lang.String cmd) throws java.sql.SQLException;
  public void setConcurrency(int concurrency) throws java.sql.SQLException;
  public void acceptChanges() throws java.sql.SQLException;
  public void acceptChanges(java.sql.Connection _conn) 
      throws java.sql.SQLException;
  public void execute() throws java.sql.SQLException;
  public void execute(java.sql.Connection _conn) throws java.sql.SQLException;
  public void populate(java.sql.ResultSet rs) throws java.sql.SQLException;
  public void setShowDeleted(boolean value) throws java.sql.SQLException;
  public boolean getShowDeleted() throws java.sql.SQLException;
  public String getTableName() throws java.sql.SQLException;
  public void setTableName(java.lang.String _tableName) 
      throws java.sql.SQLException;
  public int[] getKeyCols() throws java.sql.SQLException;
  public void setKeyColumns(int[] keys) throws java.sql.SQLException;
  public void cancelRowDelete() throws java.sql.SQLException;
  public void cancelRowInsert() throws java.sql.SQLException;
  public void cancelRowUpdates() throws java.sql.SQLException;
  public boolean columnUpdated(int columnIndex) throws java.sql.SQLException;
  public void setOriginal() throws java.sql.SQLException;
  public void setOriginalRow() throws java.sql.SQLException;
  public void restoreOriginal() throws java.sql.SQLException;
  public int size();
  public Collection toCollection() throws java.sql.SQLException;
  public Collection toCollection(int col) throws java.sql.SQLException;
  public void release() throws java.sql.SQLException;
  public RowSet createCopy() throws java.sql.SQLException;
  public RowSet createShared() throws java.sql.SQLException;
  public void setMetaData(javax.sql.RowSetMetaData md) 
      throws java.sql.SQLException;
  public Connection getConnection() throws java.sql.SQLException;
  public ResultSet getOriginal() throws java.sql.SQLException;
  public ResultSet getOriginalRow() throws java.sql.SQLException;
  public void close() throws java.sql.SQLException;
  public boolean next() throws java.sql.SQLException;
  public boolean previous() throws java.sql.SQLException;
  public boolean first() throws java.sql.SQLException;
  public boolean last() throws java.sql.SQLException;
  public boolean absolute(int row) throws java.sql.SQLException;
  public boolean relative(int rows) throws java.sql.SQLException;
  public void beforeFirst() throws java.sql.SQLException;
  public void afterLast() throws java.sql.SQLException;
  public boolean isBeforeFirst() throws java.sql.SQLException;
  public boolean isAfterLast() throws java.sql.SQLException;
  public boolean isFirst() throws java.sql.SQLException;
  public boolean isLast() throws java.sql.SQLException;
  public int getRow() throws java.sql.SQLException;
  public boolean rowUpdated() throws java.sql.SQLException;
  public boolean rowInserted() throws java.sql.SQLException;
  public boolean rowDeleted() throws java.sql.SQLException;
  public void refreshRow() throws java.sql.SQLException;
  public void insertRow() throws java.sql.SQLException;
  public void updateRow() throws java.sql.SQLException;
  public void deleteRow() throws java.sql.SQLException;
  public void moveToInsertRow() throws java.sql.SQLException;
  public void moveToCurrentRow() throws java.sql.SQLException;
  public boolean wasNull() throws java.sql.SQLException;
  public SQLWarning getWarnings() throws java.sql.SQLException;
  public void clearWarnings() throws java.sql.SQLException;
  public String getCursorName() throws java.sql.SQLException;
  public ResultSetMetaData getMetaData() throws java.sql.SQLException;
  public int findColumn(java.lang.String columnName) 
      throws java.sql.SQLException;
  public String getString(int columnIndex) throws java.sql.SQLException;
  public boolean getBoolean(int columnIndex) throws java.sql.SQLException;
  public byte getByte(int columnIndex) throws java.sql.SQLException;
  public short getShort(int columnIndex) throws java.sql.SQLException;
  public int getInt(int columnIndex) throws java.sql.SQLException;
  public long getLong(int columnIndex) throws java.sql.SQLException;
  public float getFloat(int columnIndex) throws java.sql.SQLException;
  public double getDouble(int columnIndex) throws java.sql.SQLException;
  public BigDecimal getBigDecimal(int columnIndex) 
      throws java.sql.SQLException;
  public BigDecimal getBigDecimal(int columnIndex, int scale) 
      throws java.sql.SQLException;
  public byte[] getBytes(int columnIndex) throws java.sql.SQLException;
  public Date getDate(int columnIndex) throws java.sql.SQLException;
  public Time getTime(int columnIndex) throws java.sql.SQLException;
  public Timestamp getTimestamp(int columnIndex) throws java.sql.SQLException;
  public InputStream getAsciiStream(int columnIndex) 
      throws java.sql.SQLException;
  public InputStream getUnicodeStream(int columnIndex) 
      throws java.sql.SQLException;
  public InputStream getBinaryStream(int columnIndex) 
      throws java.sql.SQLException;
  public Object getObject(int columnIndex) throws java.sql.SQLException;
  public String getString(java.lang.String columnName) 
      throws java.sql.SQLException;
  public boolean getBoolean(java.lang.String columnName) 
      throws java.sql.SQLException;
  public byte getByte(java.lang.String columnName) 
      throws java.sql.SQLException;
  public short getShort(java.lang.String columnName) 
      throws java.sql.SQLException;
  public int getInt(java.lang.String columnName) throws java.sql.SQLException;
  public long getLong(java.lang.String columnName) 
      throws java.sql.SQLException;
  public float getFloat(java.lang.String columnName) 
      throws java.sql.SQLException;
  public double getDouble(java.lang.String columnName) 
      throws java.sql.SQLException;
  public BigDecimal getBigDecimal(java.lang.String columnName, int scale) 
      throws java.sql.SQLException;
  public byte[] getBytes(java.lang.String columnName) 
      throws java.sql.SQLException;
  public Date getDate(java.lang.String columnName) 
      throws java.sql.SQLException;
  public Time getTime(java.lang.String columnName) 
      throws java.sql.SQLException;
  public Timestamp getTimestamp(java.lang.String columnName) 
      throws java.sql.SQLException;
  public InputStream getAsciiStream(java.lang.String columnName) 
      throws java.sql.SQLException;
  public InputStream getUnicodeStream(java.lang.String columnName) 
      throws java.sql.SQLException;
  public InputStream getBinaryStream(java.lang.String columnName) 
      throws java.sql.SQLException;
  public Object getObject(java.lang.String columnName) 
      throws java.sql.SQLException;
  public Reader getCharacterStream(int columnIndex) 
      throws java.sql.SQLException;
  public Reader getCharacterStream(java.lang.String columnName) 
      throws java.sql.SQLException;
  public BigDecimal getBigDecimal(java.lang.String columnName) 
      throws java.sql.SQLException;
  public void updateNull(int columnIndex) throws java.sql.SQLException;
  public void updateBoolean(int columnIndex, boolean x) 
      throws java.sql.SQLException;
  public void updateByte(int columnIndex, byte x) throws java.sql.SQLException;
  public void updateShort(int columnIndex, short x) 
      throws java.sql.SQLException;
  public void updateInt(int columnIndex, int x) throws java.sql.SQLException;
  public void updateLong(int columnIndex, long x) throws java.sql.SQLException;
  public void updateFloat(int columnIndex, float x) 
      throws java.sql.SQLException;
  public void updateDouble(int columnIndex, double x) 
      throws java.sql.SQLException;
  public void updateBigDecimal(int columnIndex, java.math.BigDecimal x) 
      throws java.sql.SQLException;
  public void updateString(int columnIndex, java.lang.String x) 
      throws java.sql.SQLException;
  public void updateBytes(int columnIndex, byte[] x) 
      throws java.sql.SQLException;
  public void updateDate(int columnIndex, java.sql.Date x) 
      throws java.sql.SQLException;
  public void updateTime(int columnIndex, java.sql.Time x) 
      throws java.sql.SQLException;
  public void updateTimestamp(int columnIndex, java.sql.Timestamp x) 
      throws java.sql.SQLException;
  public void updateAsciiStream(int columnIndex, java.io.InputStream x, 
                                int length) throws java.sql.SQLException;
  public void updateBinaryStream(int columnIndex, java.io.InputStream x, 
                                 int length) throws java.sql.SQLException;
  public void updateCharacterStream(int columnIndex, java.io.Reader x, 
                                    int length) throws java.sql.SQLException;
  public void updateObject(int columnIndex, java.lang.Object x, int scale) 
      throws java.sql.SQLException;
  public void updateObject(int columnIndex, java.lang.Object x) 
      throws java.sql.SQLException;
  public void updateNull(java.lang.String columnName) 
      throws java.sql.SQLException;
  public void updateBoolean(java.lang.String columnName, boolean x) 
      throws java.sql.SQLException;
  public void updateByte(java.lang.String columnName, byte x) 
      throws java.sql.SQLException;
  public void updateShort(java.lang.String columnName, short x) 
      throws java.sql.SQLException;
  public void updateInt(java.lang.String columnName, int x) 
      throws java.sql.SQLException;
  public void updateLong(java.lang.String columnName, long x) 
      throws java.sql.SQLException;
  public void updateFloat(java.lang.String columnName, float x) 
      throws java.sql.SQLException;
  public void updateDouble(java.lang.String columnName, double x) 
      throws java.sql.SQLException;
  public void updateBigDecimal(java.lang.String columnName, 
                               java.math.BigDecimal x) 
      throws java.sql.SQLException;
  public void updateString(java.lang.String columnName, java.lang.String x) 
      throws java.sql.SQLException;
  public void updateBytes(java.lang.String columnName, byte[] x) 
      throws java.sql.SQLException;
  public void updateDate(java.lang.String columnName, java.sql.Date x) 
      throws java.sql.SQLException;
  public void updateTime(java.lang.String columnName, java.sql.Time x) 
      throws java.sql.SQLException;
  public void updateTimestamp(java.lang.String columnName, 
                              java.sql.Timestamp x) 
      throws java.sql.SQLException;
  public void updateAsciiStream(java.lang.String columnName, 
                                java.io.InputStream x, int length) 
      throws java.sql.SQLException;
  public void updateBinaryStream(java.lang.String columnName, 
                                 java.io.InputStream x, int length) 
      throws java.sql.SQLException;
  public void updateCharacterStream(java.lang.String columnName, 
                                    java.io.Reader reader, int length) 
      throws java.sql.SQLException;
  public void updateObject(java.lang.String columnName, java.lang.Object x, 
                           int scale) throws java.sql.SQLException;
  public void updateObject(java.lang.String columnName, java.lang.Object x) 
      throws java.sql.SQLException;
  public Statement getStatement() throws java.sql.SQLException;
  public Object getObject(int colIndex, java.util.Map map) 
      throws java.sql.SQLException;
  public Ref getRef(int colIndex) throws java.sql.SQLException;
  public Blob getBlob(int colIndex) throws java.sql.SQLException;
  public Clob getClob(int colIndex) throws java.sql.SQLException;
  public Array getArray(int colIndex) throws java.sql.SQLException;
  public Object getObject(java.lang.String colName, java.util.Map map) 
      throws java.sql.SQLException;
  public Ref getRef(java.lang.String colName) throws java.sql.SQLException;
  public Blob getBlob(java.lang.String colName) throws java.sql.SQLException;
  public Clob getClob(java.lang.String colName) throws java.sql.SQLException;
  public Array getArray(java.lang.String colName) throws java.sql.SQLException;
  public Date getDate(int columnIndex, java.util.Calendar cal) 
      throws java.sql.SQLException;
  public Date getDate(java.lang.String columnName, java.util.Calendar cal) 
      throws java.sql.SQLException;
  public Time getTime(int columnIndex, java.util.Calendar cal) 
      throws java.sql.SQLException;
  public Time getTime(java.lang.String columnName, java.util.Calendar cal) 
      throws java.sql.SQLException;
  public Timestamp getTimestamp(int columnIndex, java.util.Calendar cal) 
      throws java.sql.SQLException;
  public Timestamp getTimestamp(java.lang.String columnName, 
                                java.util.Calendar cal) 
      throws java.sql.SQLException;
  public URL getURL(int columnIndex) throws java.sql.SQLException;
  public URL getURL(java.lang.String columnName) throws java.sql.SQLException;
  public void updateRef(int columnIndex, java.sql.Ref x) 
      throws java.sql.SQLException;
  public void updateRef(java.lang.String columnName, java.sql.Ref x) 
      throws java.sql.SQLException;
  public void updateBlob(int columnIndex, java.sql.Blob x) 
      throws java.sql.SQLException;
  public void updateBlob(java.lang.String columnName, java.sql.Blob x) 
      throws java.sql.SQLException;
  public void updateClob(int columnIndex, java.sql.Clob x) 
      throws java.sql.SQLException;
  public void updateClob(java.lang.String columnName, java.sql.Clob x) 
      throws java.sql.SQLException;
  public void updateArray(int columnIndex, java.sql.Array x) 
      throws java.sql.SQLException;
  public void updateArray(java.lang.String columnName, java.sql.Array x) 
      throws java.sql.SQLException;
}
</programlisting><para> Inheritance Path java.lang.Object</para><para>openlink.javax.BaseRowSet</para><para>openlink.javax.OPLCachedRowSet</para><para> </para><bridgehead class="http://www.w3.org/1999/xhtml:h4">Members</bridgehead>
<para><emphasis>Constructor <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink>()</emphasis></para><para><ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> Methods <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink><computeroutput> Synopsis: public <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink>() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if an error occurs.</para><para>Create a <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> object.
 The object has no metadata.</para><para><emphasis>Method absolute(int)</emphasis></para><para>absolute Methods absolute<computeroutput> Synopsis: public boolean absolute(int row) throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs, or row is 0, or rowset type is TYPE_FORWARD_ONLY.</para><para>Move to an absolute row number in the rowset.
 It notifies listeners that the cursor has moved.</para><para>If row is positive, moves to an absolute row with respect to the beginning of the rowset.
 The first row is row 1, the second is row 2, etc.</para><para>If row is negative, moves to an absolute row position with respect to the end of rowset.
 For example, calling absolute(-1) positions the cursor on the last row, absolute(-2) indicates the next-to-last row, etc.</para><para>An attempt to position the cursor beyond the first/last row in the rowset, leaves the cursor before/after the first/last row, respectively.</para><para>Note: Calling absolute(1) is the same as calling first().
 Calling absolute(-1) is the same as calling last().</para><para><emphasis>Method acceptChanges()</emphasis></para><para>acceptChanges Methods acceptChanges<computeroutput> Synopsis: public void acceptChanges() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if an error occurs.</para><para>Propagate all row update, insert, and delete changes to a data source.
 An SQLException is thrown if any of the updates cannot be propagated.
 If acceptChanges() fails then the caller can assume that none of the updates are reflected in the data source.
 The current row is set to the first &quot;updated&quot; row that resulted in an exception, in the case that an exception is thrown.
 With one exception, if the row that caused the exception is a &quot;deleted&quot; row, then in the usual case, when deleted rows are not shown, the current row isn&#39;t affected.
 When successful, calling acceptChanges() replaces the original value of the rowset with the current value.
 Note: Both the original and current value of the rowset are maintained.
 The original state is the value of the rowset following its creation (i.e.
 empty), or following the last call to acceptChanges(), execute(), populate(), release(), or restoreOriginal().
 Internally, a <ulink url="RowSetWriter">RowSetWriter</ulink> component is envoked to write the data for each row.</para><para><emphasis>Method acceptChanges(Connection)</emphasis></para><para>acceptChanges Methods acceptChanges<computeroutput> Synopsis: public void acceptChanges(java.sql.Connection _conn)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> _conn - a database connection</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if an error occurs.</para><para>Like acceptChanges() above, but takes a Connection argument.
 The Connection is used internally when doing the updates.
 This form isn&#39;t used unless the underlying data source is a JDBC data source.</para><para><emphasis>Method afterLast()</emphasis></para><para>afterLast Methods afterLast</para><para>((( Synopsis: public void afterLast() throws java.sql.SQLException;     </para><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs, or rowset type is TYPE_FORWARD_ONLY.</para><para>Moves to the end of the rowset, just after the last row.
 Has no effect if the rowset contains no rows.
 It notifies listeners that the cursor has moved.</para><para><emphasis>Method beforeFirst()</emphasis></para><para>beforeFirst Methods beforeFirst<computeroutput> Synopsis: public void beforeFirst() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs, or rowset type is TYPE_FORWARD_ONLY</para><para>Moves to the front of the rowset, just before the first row.
 Has no effect if the rowset contains no rows.
 It notifies listeners that the cursor has moved.</para><para><emphasis>Method cancelRowDelete()</emphasis></para><para>cancelRowDelete Methods cancelRowDelete<computeroutput> Synopsis: public void cancelRowDelete() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if an error occurs.</para><para>Cancels deletion of the current row and notifies listeners that a row has changed.
 After calling cancelRowDelete() the current row is no longer marked for deletion.
 An exception is thrown if there is no current row.
 Note: This method can be ignored if deleted rows aren&#39;t being shown (the normal case).</para><para><emphasis>Method cancelRowInsert()</emphasis></para><para>cancelRowInsert Methods cancelRowInsert<computeroutput> Synopsis: public void cancelRowInsert() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if an error occurs.</para><para>Cancels insertion of the current row and notifies listeners that a row has changed.
 An exception is thrown if the row isn&#39;t an inserted row.
 The current row is immediately removed from the rowset.
 This operation cannot be undone.</para><para><emphasis>Method cancelRowUpdates()</emphasis></para><para>cancelRowUpdates Methods cancelRowUpdates<computeroutput> Synopsis: public void cancelRowUpdates() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if an error occurs.</para><para>The cancelRowUpdates() method may be called after calling an updateXXX() method(s) and before calling updateRow() to rollback the updates made to a row.
 If no updates have been made or updateRow() has already been called, then this method has no effect.
 It notifies listeners that a row has changed, if it has effect.</para><para><emphasis>Method clearWarnings()</emphasis></para><para>clearWarnings Methods clearWarnings<computeroutput> Synopsis: public void clearWarnings() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>After this call getWarnings returns null until a new warning is reported for this <ulink url="ResultSet">ResultSet</ulink>.</para><para><emphasis>Method close()</emphasis></para><para>close Methods close<computeroutput> Synopsis: public void close() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if an error occurs.</para><para>Releases the current contents of this rowset, discarding outstanding updates.
 The rowset contains no rows after the method release is called.
 This method sends a <ulink url="RowSetChangedEvent">RowSetChangedEvent</ulink> object to all registered listeners prior to returning.</para><para><emphasis>Method columnUpdated(int)</emphasis></para><para>columnUpdated Methods columnUpdated<computeroutput> Synopsis: public boolean columnUpdated(int columnIndex)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - true if the column has been updated</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Determine if the column from the current row has been updated.</para><para><emphasis>Method createCopy()</emphasis></para><para>createCopy Methods createCopy<computeroutput> Synopsis: public <ulink url="RowSet">RowSet</ulink> createCopy() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if an error occurs.</para><para>Creates a <ulink url="RowSet">RowSet</ulink> object that is a deep copy of this <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> object&#39;s data.
 Updates made on a copy are not visible to the original rowset; a copy of a rowset is completely independent from the original.
 Making a copy saves the cost of creating an identical rowset from first principles, which can be quite expensive.
 For example, it doesn&#39;t do the query to a remote database server.</para><para><emphasis>Method createShared()</emphasis></para><para>createShared Methods createShared<computeroutput> Synopsis: public <ulink url="RowSet">RowSet</ulink> createShared() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if an error occurs.</para><para>Returns a new rowset object backed by the same data.
 Updates made by a shared duplicate are visible to the original rowset and other duplicates.
 A rowset and its duplicates form a set of cursors that iterate over a shared set of rows, providing different views of the underlying data.
 Duplicates also share property values.
 So, for example, if a rowset is read-only then all of its duplicates will be read-only.</para><para><emphasis>Method deleteRow()</emphasis></para><para>deleteRow Methods deleteRow<computeroutput> Synopsis: public void deleteRow() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs, or if called when on the insert row.</para><para>Delete the current row from this <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> object and it notifies listeners that a row has changed.
 Cannot be called when the cursor is on the insert row.
 The method marks the current row as deleted, but it does not delete the row from the underlying data source.
 The method acceptChanges must be called to delete the row in the data source.</para><para><emphasis>Method execute()</emphasis></para><para>execute Methods execute<computeroutput> Synopsis: public void execute() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if an error occurs.</para><para>Populates this <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> object with data.
 This form of the method uses the rowset&#39;s user, password, and url or data source name properties to create a database connection.
 If properties that are needed have not been set, this method will throw an exception.
 Another form of this method uses an existing JDBC Connection object instead of creating a new one; therefore, it ignores the properties used for establishing a new connection.
 The query specified by the command property is executed to create a <ulink url="ResultSet">ResultSet</ulink> object from which to retrieve data.
 The current contents of the rowset are discarded, and the rowset&#39;s metadata is also (re)set.
 If there are outstanding updates, they are also ignored.
 The method execute closes any database connections that it creates.</para><para><emphasis>Method execute(Connection)</emphasis></para><para>execute Methods execute<computeroutput> Synopsis: public void execute(java.sql.Connection _conn)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> _conn - a database connection</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if an error occurs.</para><para>Populates the rowset with data.
 The first form uses the properties: url/data source name, user, and password to create a database connection.
 If these properties haven&#39;t been set, an exception is thrown.
 The second form uses an existing JDBC connection object instead.
 The values of the url/data source name, user, and password properties are ignored when the second form is used.
 Execute() closes any database connections that it creates.
 The command specified by the command property is executed to retrieve the data.
 The current contents of the rowset are discarded and the rowset&#39;s metadata is also (re)set.
 If there are outstanding updates, they are also ignored.</para><para><emphasis>Method findColumn(String)</emphasis></para><para>findColumn Methods findColumn<computeroutput> Synopsis: public int findColumn(java.lang.String columnName)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - the name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column index</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Map a Resultset column name to a <ulink url="ResultSet">ResultSet</ulink> column index.</para><para><emphasis>Method first()</emphasis></para><para>first Methods first<computeroutput> Synopsis: public boolean first() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs, or rowset type is TYPE_FORWARD_ONLY.</para><para>Moves to the first row in the rowset.
 It notifies listeners that the cursor has moved.</para><para><emphasis>Method getArray(int)</emphasis></para><para>getArray Methods getArray<computeroutput> Synopsis: public Array getArray(int colIndex) throws java.sql.SQLException;           </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> colIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - an object representing an SQL array</listitem>
</itemizedlist><para>Get an array column.</para><para><emphasis>Method getArray(String)</emphasis></para><para>getArray Methods getArray<computeroutput> Synopsis: public Array getArray(java.lang.String colName)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> colName - the column name</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - an object representing an SQL array</listitem>
</itemizedlist><para>Get an array column.</para><para><emphasis>Method getAsciiStream(int)</emphasis></para><para>getAsciiStream Methods getAsciiStream<computeroutput> Synopsis: public <ulink url="InputStream">InputStream</ulink> getAsciiStream(int columnIndex)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - a Java input stream that delivers the database column value as a stream of one byte ASCII characters.
 If the value is SQL NULL then the result is null.</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>A column value can be retrieved as a stream of ASCII characters and then read in chunks from the stream.
 This method is particularly suitable for retrieving large LONGVARCHAR values.
 The JDBC driver will do any necessary conversion from the database format into ASCII.</para><para>Note: All the data in the returned stream must be read prior to getting the value of any other column.
 The next call to a get method implicitly closes the stream.
 . Also, a stream may return 0 for available() whether there is data available or not.</para><para><emphasis>Method getAsciiStream(String)</emphasis></para><para>getAsciiStream Methods getAsciiStream<computeroutput> Synopsis: public <ulink url="InputStream">InputStream</ulink> getAsciiStream(java.lang.String columnName)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - is the SQL name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - a Java input stream that delivers the database column value as a stream of one byte ASCII characters.
 If the value is SQL NULL then the result is null.</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>A column value can be retrieved as a stream of ASCII characters and then read in chunks from the stream.
 This method is particularly suitable for retrieving large LONGVARCHAR values.
 The JDBC driver will do any necessary conversion from the database format into ASCII.</para><para>Note: All the data in the returned stream must be read prior to getting the value of any other column.
 The next call to a get method implicitly closes the stream.</para><para><emphasis>Method getBigDecimal(int)</emphasis></para><para>getBigDecimal Methods getBigDecimal<computeroutput> Synopsis: public <ulink url="BigDecimal">BigDecimal</ulink> getBigDecimal(int columnIndex)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value (full precision); if the value is SQL NULL, the result is null</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a java.math.BigDecimal object.</para><para><emphasis>Method getBigDecimal(int, int)</emphasis></para><para>getBigDecimal Methods getBigDecimal<computeroutput> Synopsis: public <ulink url="BigDecimal">BigDecimal</ulink> getBigDecimal(int columnIndex, int scale)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> scale - the number of digits to the right of the decimal</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is null</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Deprecated</para><para>Get the value of a column in the current row as a java.math.BigDecimal object.</para><para><emphasis>Method getBigDecimal(String)</emphasis></para><para>getBigDecimal Methods getBigDecimal<computeroutput> Synopsis: public <ulink url="BigDecimal">BigDecimal</ulink> getBigDecimal(java.lang.String columnName)               throws java.sql.SQLException;     </computeroutput></para>
<para>Get the value of a column in the current row as a java.math.BigDecimal object.</para><para><emphasis>Method getBigDecimal(String, int)</emphasis></para><para>getBigDecimal Methods getBigDecimal<computeroutput> Synopsis: public <ulink url="BigDecimal">BigDecimal</ulink> getBigDecimal(java.lang.String columnName,                                           int scale)               throws java.sql.SQLException;</computeroutput></para>
<para> Parameters</para><para>columnName - is the SQL name of the column</para><para>scale - the number of digits to the right of the decimal</para><para>return - the column value; if the value is SQL NULL, the result is null</para><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Deprecated</para><para>Get the value of a column in the current row as a java.math.BigDecimal object.</para><para>11.11.2.2.28.
 Method getBinaryStream(int) getBinaryStream Methods getBinaryStream</para><para>Synopsis: public <ulink url="InputStream">InputStream</ulink> getBinaryStream(int columnIndex)               throws java.sql.SQLException;     </para><para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - a Java input stream that delivers the database column value as a stream of uninterpreted bytes.
 If the value is SQL NULL then the result is null.</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>A column value can be retrieved as a stream of uninterpreted bytes and then read in chunks from the stream.
 This method is particularly suitable for retrieving large LONGVARBINARY values.</para><para>Note: All the data in the returned stream must be read prior to getting the value of any other column.
 The next call to a get method implicitly closes the stream.
 Also, a stream may return 0 for available() whether there is data available or not.</para><para><emphasis>Method getBinaryStream(String)</emphasis></para><para>getBinaryStream Methods getBinaryStream<computeroutput> Synopsis: public <ulink url="InputStream">InputStream</ulink> getBinaryStream(java.lang.String columnName)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - is the SQL name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - a Java input stream that delivers the database column value as a stream of uninterpreted bytes.
 If the value is SQL NULL then the result is null.</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>A column value can be retrieved as a stream of uninterpreted bytes and then read in chunks from the stream.
 This method is particularly suitable for retrieving large LONGVARBINARY values.</para><para>Note: All the data in the returned stream must be read prior to getting the value of any other column.
 The next call to a get method implicitly closes the stream.</para><para><emphasis>Method getBlob(int)</emphasis></para><para>getBlob Methods getBlob<computeroutput> Synopsis: public Blob getBlob(int colIndex) throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> colIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - an object representing a BLOB</listitem>
</itemizedlist><para>Get a BLOB column.</para><para><emphasis>Method getBlob(String)</emphasis></para><para>getBlob Methods getBlob<computeroutput> Synopsis: public Blob getBlob(java.lang.String colName)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> colName - the column name</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - an object representing a BLOB</listitem>
</itemizedlist><para>Get a BLOB column.</para><para><emphasis>Method getBoolean(int)</emphasis></para><para>getBoolean Methods getBoolean<computeroutput> Synopsis: public boolean getBoolean(int columnIndex)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is false</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a Java boolean.</para><para><emphasis>Method getBoolean(String)</emphasis></para><para>getBoolean Methods getBoolean<computeroutput> Synopsis: public boolean getBoolean(java.lang.String columnName)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - is the SQL name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is false</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a Java boolean.</para><para><emphasis>Method getByte(int)</emphasis></para><para>getByte Methods getByte<computeroutput> Synopsis: public byte getByte(int columnIndex) throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is 0</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a Java byte.</para><para><emphasis>Method getByte(String)</emphasis></para><para>getByte Methods getByte<computeroutput> Synopsis: public byte getByte(java.lang.String columnName)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - is the SQL name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is 0</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a Java byte.</para><para><emphasis>Method getBytes(int)</emphasis></para><para>getBytes Methods getBytes<computeroutput> Synopsis: public byte[] getBytes(int columnIndex) throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is null</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a Java byte array.
 The bytes represent the raw values returned by the driver.</para><para><emphasis>Method getBytes(String)</emphasis></para><para>getBytes Methods getBytes<computeroutput> Synopsis: public byte[] getBytes(java.lang.String columnName)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - is the SQL name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is null</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a Java byte array.
 The bytes represent the raw values returned by the driver.</para><para><emphasis>Method getCharacterStream(int)</emphasis></para><para>getCharacterStream Methods getCharacterStream<computeroutput> Synopsis: public Reader getCharacterStream(int columnIndex)               throws java.sql.SQLException;     </computeroutput></para>
<para>Get the value of a column in the current row as a java.io.Reader.</para><para><emphasis>Method getCharacterStream(String)</emphasis></para><para>getCharacterStream Methods getCharacterStream<computeroutput> Synopsis: public Reader getCharacterStream(java.lang.String columnName)               throws java.sql.SQLException;     </computeroutput></para>
<para>Get the value of a column in the current row as a java.io.Reader.</para><para><emphasis>Method getClob(int)</emphasis></para><para>getClob Methods getClob<computeroutput> Synopsis: public Clob getClob(int colIndex) throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> colIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - an object representing a CLOB</listitem>
</itemizedlist><para>Get a CLOB column.</para><para><emphasis>Method getClob(String)</emphasis></para><para>getClob Methods getClob<computeroutput> Synopsis: public Clob getClob(java.lang.String colName)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> colName - the column name</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - an object representing a CLOB</listitem>
</itemizedlist><para>Get a CLOB column.</para><para><emphasis>Method getConnection()</emphasis></para><para>getConnection Methods getConnection<computeroutput> Synopsis: public Connection getConnection() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the Connection passed to the rowset.</para><para><emphasis>Method getCursorName()</emphasis></para><para>getCursorName Methods getCursorName<computeroutput> Synopsis: public String getCursorName() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if an error occurs.</para><para>Get the name of the SQL cursor used by this <ulink url="ResultSet">ResultSet</ulink>.</para><para><emphasis> Method getDate(int)</emphasis></para><para>getDate Methods getDate<computeroutput> Synopsis: public Date getDate(int columnIndex) throws java.sql.SQLException; </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is null</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a java.sql.Date object.</para><para><emphasis>Method getDate(int, Calendar)</emphasis></para><para>getDate Methods getDate<computeroutput> Synopsis: public Date getDate(int columnIndex, java.util.Calendar cal)               throws java.sql.SQLException; </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> cal - the calendar to use in constructing the date</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is null</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a java.sql.Date object.
 Use the calendar to construct an appropriate millisecond value for the Date, if the underlying database doesn&#39;t store timezone information.</para><para><emphasis>Method getDate(String)</emphasis></para><para>getDate Methods getDate<computeroutput> Synopsis: public Date getDate(java.lang.String columnName)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - is the SQL name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is null</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a java.sql.Date object.</para><para><emphasis>Method getDate(String, Calendar)</emphasis></para><para>getDate Methods getDate<computeroutput> Synopsis: public Date getDate(java.lang.String columnName,                               java.util.Calendar cal)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - is the SQL name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> cal - the calendar to use in constructing the date</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is null</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a java.sql.Date object.
 Use the calendar to construct an appropriate millisecond value for the Date, if the underlying database doesn&#39;t store timezone information.</para><para><emphasis>Method getDouble(int)</emphasis></para><para>getDouble Methods getDouble<computeroutput> Synopsis: public double getDouble(int columnIndex)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is 0</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a Java double.</para><para><emphasis>Method getDouble(String)</emphasis></para><para>getDouble Methods getDouble<computeroutput> Synopsis: public double getDouble(java.lang.String columnName)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - is the SQL name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is 0</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a Java double.</para><para><emphasis>Method getFloat(int)</emphasis></para><para>getFloat Methods getFloat<computeroutput> Synopsis: public float getFloat(int columnIndex) throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is 0</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a Java float.</para><para><emphasis>Method getFloat(String)</emphasis></para><para>getFloat Methods getFloat<computeroutput> Synopsis: public float getFloat(java.lang.String columnName)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - is the SQL name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is 0</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a Java float.</para><para><emphasis>Method getInt(int)</emphasis></para><para>getInt Methods getInt<computeroutput> Synopsis: public int getInt(int columnIndex) throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is 0</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a Java int.</para><para><emphasis>Method getInt(String)</emphasis></para><para>getInt Methods getInt<computeroutput> Synopsis: public int getInt(java.lang.String columnName)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - is the SQL name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is 0</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a Java int.</para><para><emphasis>Method getKeyCols()</emphasis></para><para>getKeyCols Methods getKeyCols<computeroutput> Synopsis: public int[] getKeyCols() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if an error occurs.</para><para>Returns the columns that make a key to uniquely identify a row in this <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> object.</para><para><emphasis>Method getLong(int)</emphasis></para><para>getLong Methods getLong<computeroutput> Synopsis: public long getLong(int columnIndex) throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is 0</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a Java long.</para><para><emphasis>Method getLong(String)</emphasis></para><para>getLong Methods getLong<computeroutput> Synopsis: public long getLong(java.lang.String columnName)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - is the SQL name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is 0</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a Java long.</para><para><emphasis>Method getMetaData()</emphasis></para><para>getMetaData Methods getMetaData<computeroutput> Synopsis: public <ulink url="ResultSetMetaData">ResultSetMetaData</ulink> getMetaData() throws java.sql.SQLException; </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>The number, types and properties of a <ulink url="ResultSet">ResultSet</ulink>&#39;s columns are provided by the getMetaData method.</para><para><emphasis>Method getObject(int)</emphasis></para><para>getObject Methods getObject<computeroutput> Synopsis: public Object getObject(int columnIndex)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - a java.lang.Object holding the column value.</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a Java object.</para><para>This method will return the value of the given column as a Java object.
 The type of the Java object will be the default Java object type corresponding to the column&#39;s SQL type, following the mapping for built-in types specified in the JDBC spec.</para><para>This method may also be used to read database specific abstract data types.
 JDBC 2.0 New behavior for getObject().
 The behavior of method getObject() is extended to materialize data of SQL user-defined types.
 When the column @column is a structured or distinct value, the behavior of this method is as if it were a call to: getObject(column, this.getStatement().getConnection().getTypeMap()).</para><para><emphasis>Method getObject(int, Map)</emphasis></para><para>getObject Methods getObject<computeroutput> Synopsis: public Object getObject(int colIndex, java.util.Map map)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> colIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> map - the mapping from SQL type names to Java classes</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - an object representing the SQL value</listitem>
</itemizedlist><para>Returns the value of column @i as a Java object.
 Use the map to determine the class from which to construct data of SQL structured and distinct types.</para><para><emphasis>Method getObject(String)</emphasis></para><para>getObject Methods getObject<computeroutput> Synopsis: public Object getObject(java.lang.String columnName)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - is the SQL name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - a java.lang.Object holding the column value.</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a Java object.</para><para>This method will return the value of the given column as a Java object.
 The type of the Java object will be the default Java object type corresponding to the column&#39;s SQL type, following the mapping for built-in types specified in the JDBC spec.</para><para>This method may also be used to read database specific abstract data types.
 JDBC 2.0 New behavior for getObject().
 The behavior of method getObject() is extended to materialize data of SQL user-defined types.
 When the column @columnName is a structured or distinct value, the behavior of this method is as if it were a call to: getObject(columnName, this.getStatement().getConnection().getTypeMap()).</para><para><emphasis>Method getObject(String, Map)</emphasis></para><para>getObject Methods getObject<computeroutput> Synopsis: public Object getObject(java.lang.String colName, java.util.Map map)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> colName - the column name</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> map - the mapping from SQL type names to Java classes</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - an object representing the SQL value</listitem>
</itemizedlist><para>Returns the value of column @i as a Java object.
 Use the map to determine the class from which to construct data of SQL structured and distinct types.</para><para><emphasis>Method getOriginal()</emphasis></para><para>getOriginal Methods getOriginal<computeroutput> Synopsis: public <ulink url="ResultSet">ResultSet</ulink> getOriginal() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>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.</para><para><emphasis>Method getOriginalRow()</emphasis></para><para>getOriginalRow Methods getOriginalRow<computeroutput> Synopsis: public <ulink url="ResultSet">ResultSet</ulink> getOriginalRow() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Returns a result set containing the original value of the current row only.
 If the current row has no original value an empty result set is returned.
 If there is no current row an exception is thrown.</para><para><emphasis>Method getRef(int)</emphasis></para><para>getRef Methods getRef<computeroutput> Synopsis: public Ref getRef(int colIndex) throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> colIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - an object representing data of an SQL REF type</listitem>
</itemizedlist><para>Get a REF(&lt;structured-type&gt;) column.</para><para><emphasis>Method getRef(String)</emphasis></para><para>getRef Methods getRef<computeroutput> Synopsis: public Ref getRef(java.lang.String colName)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> colName - the column name</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - an object representing data of an SQL REF type</listitem>
</itemizedlist><para>Get a REF(&lt;structured-type&gt;) column.</para><para><emphasis>Method getRow()</emphasis></para><para>getRow Methods getRow<computeroutput> Synopsis: public int getRow() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Determine the current row number.
 The first row is number 1, the second number 2, etc.</para><para><emphasis>Method getShort(int)</emphasis></para><para>getShort Methods getShort<computeroutput> Synopsis: public short getShort(int columnIndex) throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is 0</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a Java short.</para><para><emphasis>Method getShort(String)</emphasis></para><para>getShort Methods getShort<computeroutput> Synopsis: public short getShort(java.lang.String columnName)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - is the SQL name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is 0</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a Java short.</para><para><emphasis>Method getShowDeleted()</emphasis></para><para>getShowDeleted Methods getShowDeleted<computeroutput> Synopsis: public boolean getShowDeleted() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if an error occurs.</para><para>This property determines whether or not rows marked for deletion appear in the set of current rows.
 The default value is false.</para><para><emphasis>Method getStatement()</emphasis></para><para>getStatement Methods getStatement<computeroutput> Synopsis: public Statement getStatement() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Return the Statement that produced the <ulink url="ResultSet">ResultSet</ulink>.</para><para><emphasis>Method getString(int)</emphasis></para><para>getString Methods getString<computeroutput> Synopsis: public String getString(int columnIndex)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is null</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a Java String.</para><para><emphasis> Method getString(String)</emphasis></para><para>getString Methods getString<computeroutput> Synopsis: public String getString(java.lang.String columnName)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - is the SQL name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is null</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a Java String.</para><para><emphasis>Method getTableName()</emphasis></para><para>getTableName Methods getTableName<computeroutput> Synopsis: public String getTableName() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if an error occurs.</para><para>Returns an identifier for the object (table) that was used to create this rowset.</para><para><emphasis>Method getTime(int)</emphasis></para><para>getTime Methods getTime<computeroutput> Synopsis: public Time getTime(int columnIndex) throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is null</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a java.sql.Time object.</para><para><emphasis>Method getTime(int, Calendar)</emphasis></para><para>getTime Methods getTime<computeroutput> Synopsis: public Time getTime(int columnIndex, java.util.Calendar cal)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> cal - the calendar to use in constructing the time</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is null</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a java.sql.Time object.
 Use the calendar to construct an appropriate millisecond value for the Time, if the underlying database doesn&#39;t store timezone information.</para><para><emphasis>Method getTime(String)</emphasis></para><para>getTime Methods getTime<computeroutput> Synopsis: public Time getTime(java.lang.String columnName)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - is the SQL name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is null</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a java.sql.Time object.</para><para><emphasis>Method getTime(String, Calendar)</emphasis></para><para>getTime Methods getTime<computeroutput> Synopsis: public Time getTime(java.lang.String columnName,                               java.util.Calendar cal)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - is the SQL name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> cal - the calendar to use in constructing the time</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is null</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a java.sql.Time object.
 Use the calendar to construct an appropriate millisecond value for the Time, if the underlying database doesn&#39;t store timezone information.</para><para><emphasis>Method getTimestamp(int)</emphasis></para><para>getTimestamp Methods getTimestamp<computeroutput> Synopsis: public Timestamp getTimestamp(int columnIndex)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is null</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a java.sql.Timestamp object.</para><para><emphasis>Method getTimestamp(int, Calendar)</emphasis></para><para>getTimestamp Methods getTimestamp<computeroutput> Synopsis: public Timestamp getTimestamp(int columnIndex,                                         java.util.Calendar cal)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> cal - the calendar to use in constructing the timestamp</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is null</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a java.sql.Timestamp object.
 Use the calendar to construct an appropriate millisecond value for the Timestamp, if the underlying database doesn&#39;t store timezone information.</para><para><emphasis>Method getTimestamp(String)</emphasis></para><para>getTimestamp Methods getTimestamp<computeroutput> Synopsis: public Timestamp getTimestamp(java.lang.String columnName)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - is the SQL name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is null</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a java.sql.Timestamp object.</para><para><emphasis>Method getTimestamp(String, Calendar)</emphasis></para><para>getTimestamp Methods getTimestamp<computeroutput> Synopsis: public Timestamp getTimestamp(java.lang.String columnName,                                         java.util.Calendar cal)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - is the SQL name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> cal - the calendar to use in constructing the timestamp</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value; if the value is SQL NULL, the result is null</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Get the value of a column in the current row as a java.sql.Timestamp object.
 Use the calendar to construct an appropriate millisecond value for the Timestamp, if the underlying database doesn&#39;t store timezone information.</para><para><emphasis>Method getUnicodeStream(int)</emphasis></para><para>getUnicodeStream Methods getUnicodeStream<computeroutput> Synopsis: public <ulink url="InputStream">InputStream</ulink> getUnicodeStream(int columnIndex)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - a Java input stream that delivers the database column value as a stream of two byte Unicode characters.
 If the value is SQL NULL then the result is null.</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Deprecated</para><para>A column value can be retrieved as a stream of Unicode characters and then read in chunks from the stream.
 This method is particularly suitable for retrieving large LONGVARCHAR values.
 The JDBC driver will do any necessary conversion from the database format into Unicode.</para><para>Note: All the data in the returned stream must be read prior to getting the value of any other column.
 The next call to a get method implicitly closes the stream.
 . Also, a stream may return 0 for available() whether there is data available or not.</para><para><emphasis>Method getUnicodeStream(String)</emphasis></para><para>getUnicodeStream Methods getUnicodeStream<computeroutput> Synopsis: public <ulink url="InputStream">InputStream</ulink> getUnicodeStream(java.lang.String columnName)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - is the SQL name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - a Java input stream that delivers the database column value as a stream of two byte Unicode characters.
 If the value is SQL NULL then the result is null.</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Deprecated</para><para>A column value can be retrieved as a stream of Unicode characters and then read in chunks from the stream.
 This method is particularly suitable for retrieving large LONGVARCHAR values.
 The JDBC driver will do any necessary conversion from the database format into Unicode.</para><para>Note: All the data in the returned stream must be read prior to getting the value of any other column.
 The next call to a get method implicitly closes the stream.</para><para><emphasis>Method getURL(int)</emphasis></para><para>getURL Methods getURL<computeroutput> Synopsis: public URL getURL(int columnIndex) throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the index of the column 1 is the first, 2 is the second,...</listitem>
</itemizedlist><para>8 return - the column value as a java.net.URL object; if the value is SQL NULL, the value returned is null in the Java programming language</para><para>Exceptions</para><para>SQLException</para><para>if a database access error occurs, or if a URL is malformed</para><para>Additional Information</para><para>Since</para><itemizedlist mark="bullet" spacing="compact"><listitem>1.4</listitem>
</itemizedlist><para> Retrieves the value of the designated column in the current row of this <ulink url="ResultSet">ResultSet</ulink> object as a java.net.URL object in the Java programming language.</para><para><emphasis>Method getURL(String)</emphasis></para><para>getURL Methods getURL<computeroutput> Synopsis: public URL getURL(java.lang.String columnName)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - the SQL name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> return - the column value as a java.net.URL object; if the value is SQL NULL, the value returned is null in the Java programming language</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database access error occurs or if a URL is malformed</para><para>Additional Information</para><para>Since</para><itemizedlist mark="bullet" spacing="compact"><listitem> 1.4</listitem>
</itemizedlist><para> Retrieves the value of the designated column in the current row of this <ulink url="ResultSet">ResultSet</ulink> object as a java.net.URL object in the Java programming language.
<emphasis> Method getWarnings()</emphasis></para><para>getWarnings Methods getWarnings<computeroutput> Synopsis: public SQLWarning getWarnings() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>The first warning reported by calls on this <ulink url="ResultSet">ResultSet</ulink> is returned.
 Subsequent <ulink url="ResultSet">ResultSet</ulink> warnings will be chained to this SQLWarning.</para><para>The warning chain is automatically cleared each time a new row is read.</para><para>Note: This warning chain only covers warnings caused by <ulink url="ResultSet">ResultSet</ulink> methods.
 Any warning caused by statement methods (such as reading OUT parameters) will be chained on the Statement object.</para><para><emphasis>Method insertRow()</emphasis></para><para>insertRow Methods insertRow<computeroutput> Synopsis: public void insertRow() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database access error occurs, if this method is called when the cursor is not on the insert row</para><para>Inserts the contents of the insert row into this rowset following the current row and it notifies listeners that the row has changed.
 The cursor must be on the insert row when this method is called.
 The method marks the current row as inserted, but it does not insert the row to the underlying data source.
 The method acceptChanges must be called to insert the row to the data source.</para><para><emphasis>Method isAfterLast()</emphasis></para><para>isAfterLast Methods isAfterLast<computeroutput> Synopsis: public boolean isAfterLast() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Determine if the cursor is after the last row in the rowset.</para><para><emphasis>Method isBeforeFirst()</emphasis></para><para>isBeforeFirst Methods isBeforeFirst<computeroutput> Synopsis: public boolean isBeforeFirst() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Determine if the cursor is before the first row in the rowset.</para><para><emphasis>Method isFirst()</emphasis></para><para>isFirst Methods isFirst<computeroutput> Synopsis: public boolean isFirst() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Determine if the cursor is on the first row of the rowset.</para><para><emphasis>Method isLast()</emphasis></para><para>isLast Methods isLast<computeroutput> Synopsis: public boolean isLast() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Determine if the cursor is on the last row of the rowset.
 Note: Calling isLast() may be expensive since the rowset might need to check ahead one row in order to determine whether the current row is the last row in the rowset.</para><para><emphasis>Method last()</emphasis></para><para>last Methods last<computeroutput> Synopsis: public boolean last() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs, or rowset type is TYPE_FORWARD_ONLY.</para><para>Moves to the last row in the rowset.
 It notifies listeners that the cursor has moved.</para><para><emphasis>Method moveToCurrentRow()</emphasis></para><para>moveToCurrentRow Methods moveToCurrentRow<computeroutput> Synopsis: public void moveToCurrentRow() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs, or the rowset is not updatable</para><para>Move the cursor to the remembered cursor position, usually the current row.
 Has no effect unless the cursor is on the insert row.</para><para><emphasis>Method moveToInsertRow()</emphasis></para><para>moveToInsertRow Methods moveToInsertRow<computeroutput> Synopsis: public void moveToInsertRow() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs, or the rowset is not updatable</para><para>Move to the insert row.
 The current cursor position is remembered while the cursor is positioned on the insert row.
 The insert row is a special row associated with an updatable rowset.
 It is essentially a buffer where a new row may be constructed by calling the updateXXX() methods prior to inserting the row into the rowset.
 Only the updateXXX(), getXXX(), and insertRow() methods may be called when the cursor is on the insert row.
 All of the columns in a rowset must be given a value each time this method is called before calling insertRow().
 <ulink url="UpdateXXX">UpdateXXX</ulink>()must be called before getXXX() on a column.</para><para><emphasis>Method next()</emphasis></para><para>next Methods next<computeroutput> Synopsis: public boolean next() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>A <ulink url="ResultSet">ResultSet</ulink> is initially positioned before its first row; the first call to next makes the first row the current row; the second call makes the second row the current row, etc.</para><para>If an input stream from the previous row is open, it is implicitly closed.
 The <ulink url="ResultSet">ResultSet</ulink>&#39;s warning chain is cleared when a new row is read.</para><para><emphasis>Method populate(<ulink url="ResultSet">ResultSet</ulink>)</emphasis></para><para>populate Methods populate<computeroutput> Synopsis: public void populate(java.sql.ResultSet rs)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> rs - the data to be read</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if an error occurs.</para><para>Populate the <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> object with data from a <ulink url="ResultSet">ResultSet</ulink>.
 This method is an alternative to execute() for filling the rowset with data.
 Populate() doesn&#39;t require that the properties needed by execute(), such as the command property, be set.
 A <ulink url="RowSetChangedEvent">RowSetChangedEvent</ulink> is sent to all registered listeners prior to returning.</para><para><emphasis>Method previous()</emphasis></para><para>previous Methods previous<computeroutput> Synopsis: public boolean previous() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs, or rowset type is TYPE_FORWAR_DONLY.</para><para>Moves to the previous row in the rowset.</para><para>Note: previous() is not the same as relative(-1) since it makes sense to call previous() when there is no current row.</para><para><emphasis>Method refreshRow()</emphasis></para><para>refreshRow Methods refreshRow<computeroutput> Synopsis: public void refreshRow() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs, or if called when on the insert row.</para><para>Sets the current row with its original value and marks the row as not updated, thus undoing any changes made to the row since the last call to the methods updateRow or deleteRow.
 This method should be called only when the cursor is on a row in this rowset.
 Cannot be called when on the insert row.</para><para><emphasis>Method relative(int)</emphasis></para><para>relative Methods relative<computeroutput> Synopsis: public boolean relative(int rows) throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs, or there is no current row, or rowset type is TYPE_FORWARD_ONLY.</para><para>Moves a relative number of rows, either positive or negative.
 Attempting to move beyond the first/last row in the rowset positions the cursor before/after the the first/last row.
 Calling relative(0) is valid, but does not change the cursor position.
 It notifies listeners that the cursor has moved.</para><para>Note: Calling relative(1) is different than calling next() since is makes sense to call next() when there is no current row, for example, when the cursor is positioned before the first row or after the last row of the rowset.</para><para><emphasis>Method release()</emphasis></para><para>release Methods release<computeroutput> Synopsis: public void release() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if an error occurs.</para><para>Releases the current contents of the rowset.
 Outstanding updates are discarded.
 The rowset contains no rows after release is called.
 A <ulink url="RowSetChangedEvent">RowSetChangedEvent</ulink> is sent to all registered listeners prior to returning.</para><para><emphasis>Method restoreOriginal()</emphasis></para><para>restoreOriginal Methods restoreOriginal<computeroutput> Synopsis: public void restoreOriginal() throws java.sql.SQLException; </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if an error occurs.</para><para>Restores the rowset to its original state ( the original value of the rowset becomes the current value).
 All updates, inserts, and deletes made to the original state are lost.
 The cursor is positioned before the first row.
 A <ulink url="RowSetChangedEvent">RowSetChangedEvent</ulink> is sent to all registered listeners prior to returning.</para><para><emphasis>Method rowDeleted()</emphasis></para><para>rowDeleted Methods rowDeleted<computeroutput> Synopsis: public boolean rowDeleted() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Additional Information</para><para>See Also</para><itemizedlist mark="bullet" spacing="compact"><listitem> java.sql.DatabaseMetaData.deletesAreDetected</listitem>
</itemizedlist><para> Determine if this row has been deleted.
 A deleted row may leave a visible &quot;hole&quot; in a rowset.
 This method can be used to detect holes in a rowset.
 The value returned depends on whether or not the rowset can detect deletions.</para><para><emphasis>Method rowInserted()</emphasis></para><para>rowInserted Methods rowInserted<computeroutput> Synopsis: public boolean rowInserted() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Additional Information</para><para>See Also</para><itemizedlist mark="bullet" spacing="compact"><listitem> java.sql.DatabaseMetaData.insertsAreDetected</listitem>
</itemizedlist><para> Determine if the current row has been inserted.
 The value returned depends on whether or not the rowset can detect visible inserts.</para><para><emphasis>Method rowUpdated()</emphasis></para><para>rowUpdated Methods rowUpdated<computeroutput> Synopsis: public boolean rowUpdated() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Additional Information</para><para>See Also</para><itemizedlist mark="bullet" spacing="compact"><listitem> java.sql.DatabaseMetaData.updatesAreDetected</listitem>
</itemizedlist><para> Determine if the current row has been updated.
 The value returned depends on whether or not the rowset can detect updates.</para><para><emphasis>Method setCommand(String)</emphasis></para><para>setCommand Methods setCommand<computeroutput> Synopsis: public void setCommand(java.lang.String cmd)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> cmd - - a String object containing an SQL query that will be set as the command</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>- if an error occurs</para><para>Sets this <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> object&#39;s command property to the given String object and clears the parameters, if any, that were set for the previous command.</para><para><emphasis> Method setConcurrency(int)</emphasis></para><para>setConcurrency Methods setConcurrency<computeroutput> Synopsis: public void setConcurrency(int concurrency)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> concurrency - - one of the following constants: ResultSet.CONCUR_READ_ONLY or ResultSet.CONCUR_UPDATABLE</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>- if an error occurs</para><para>Sets the concurrency for this rowset to the specified concurrency.
 The default concurrency is ResultSet.CONCUR_UPDATABLE.</para><para><emphasis>Method setKeyColumns(int[])</emphasis></para><para>setKeyColumns Methods setKeyColumns<computeroutput> Synopsis: public void setKeyColumns(int[] keys) throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> keys - - an array of int indicating the columns that form a key for this <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> object; every element in the array must be greater than 0 and less than or equal to the number of columns in this rowset</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if an error occurs.</para><para>Sets this <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> object&#39;s keyCols field with the given array of column numbers, which forms a key for uniquely identifying a row in this rowset.
 Note: If you don&#39;t set the keyCols, the <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> will set automatically based on <ulink url="RowSetMetaData">RowSetMetaData</ulink></para><para><emphasis>Method setMetaData(<ulink url="RowSetMetaData">RowSetMetaData</ulink>)</emphasis></para><para>setMetaData Methods setMetaData<computeroutput> Synopsis: public void setMetaData(javax.sql.RowSetMetaData md)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> md - a metadata object</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>Set the rowset&#39;s metadata.</para><para><emphasis>Method setOriginal()</emphasis></para><para>setOriginal Methods setOriginal<computeroutput> Synopsis: public void setOriginal() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if an error occurs.</para><para>Marks all rows in this rowset as being original rows.
 Any updates made to the rows become the original values for the rowset.
 Calls to the method setOriginal cannot be reversed.</para><para><emphasis>Method setOriginalRow()</emphasis></para><para>setOriginalRow Methods setOriginalRow<computeroutput> Synopsis: public void setOriginalRow() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if an error occurs.</para><para>Marks the current row in this rowset as being an original row.
 The row is no longer marked as inserted, deleted, or updated, and its values become the original values.
 A call to setOriginalRow cannot be reversed.</para><para><emphasis>Method setShowDeleted(boolean)</emphasis></para><para>setShowDeleted Methods setShowDeleted<computeroutput> Synopsis: public void setShowDeleted(boolean value)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> value - true if deleted rows should be shown, false otherwise</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if an error occurs.</para><para>Set the show deleted property.</para><para><emphasis>Method setTableName(String)</emphasis></para><para>setTableName Methods setTableName<computeroutput> Synopsis: public void setTableName(java.lang.String _tableName)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> _tabName - - a String object that identifies the table from which this <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> object was derived</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if an error occurs.</para><para>Sets the identifier for the table from which this rowset was derived to the given table name.
 Note: You don&#39;t usually need to set a table name, because the <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> tries to determine the table name from your SQL query command.</para><para><emphasis>Method size()</emphasis></para><para>size Methods size<computeroutput> Synopsis: public int size();     </computeroutput></para>
<para>Returns the number of rows in this <ulink url="OPLCachedRowSet">OPLCachedRowSet</ulink> object.</para><para><emphasis>Method toCollection()</emphasis></para><para>toCollection Methods toCollection<computeroutput> Synopsis: public Collection toCollection() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if an error occurs.</para><para>Convert the rowset to a collection of tables.
 Each tables represents a row of the original rowset.
 The tables are keyed by column number.
 A copy of the rowset&#39;s contents is made.</para><para><emphasis>Method toCollection(int)</emphasis></para><para>toCollection Methods toCollection<computeroutput> Synopsis: public Collection toCollection(int col) throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if an error occurs.</para><para>Return a column of the rowset as a collection.
 Makes a copy of the column&#39;s data.</para><para><emphasis>Method updateArray(int, Array)</emphasis></para><para>updateArray Methods updateArray<computeroutput> Synopsis: public void updateArray(int columnIndex, java.sql.Array x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database access error occurs</para><para>Additional Information</para><para>Since</para><itemizedlist mark="bullet" spacing="compact"><listitem> 1.4</listitem>
</itemizedlist><para> Updates the designated column with a java.sql.Array value.
 The updater methods are used to update column values in the current row or the insert row.
 The updater methods do not update the underlying database; instead the updateRow or insertRow methods are called to update the database.</para><para><emphasis>Method updateArray(String, Array)</emphasis></para><para>updateArray Methods updateArray<computeroutput> Synopsis: public void updateArray(java.lang.String columnName,                                   java.sql.Array x)               throws java.sql.SQLException; </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - the name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database access error occurs</para><para>Additional Information</para><para>Since</para><itemizedlist mark="bullet" spacing="compact"><listitem> 1.4</listitem>
</itemizedlist><para> Updates the designated column with a java.sql.Array value.
 The updater methods are used to update column values in the current row or the insert row.
 The updater methods do not update the underlying database; instead the updateRow or insertRow methods are called to update the database.</para><para><emphasis>Method updateAsciiStream(int, <ulink url="InputStream">InputStream</ulink>, int)</emphasis></para><para>updateAsciiStream Methods updateAsciiStream<computeroutput> Synopsis: public void updateAsciiStream(int columnIndex, java.io.InputStream x,                                         int length)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>8 length - the length of the stream</para><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with an ascii stream value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateAsciiStream(String, <ulink url="InputStream">InputStream</ulink>, int)</emphasis></para><para>updateAsciiStream Methods updateAsciiStream<computeroutput> Synopsis: public void updateAsciiStream(java.lang.String columnName,                                         java.io.InputStream x,                                         int length)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - the name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> length - of the stream</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with an ascii stream value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateBigDecimal(int, <ulink url="BigDecimal">BigDecimal</ulink>)</emphasis></para><para>updateBigDecimal Methods updateBigDecimal<computeroutput> Synopsis: public void updateBigDecimal(int columnIndex, java.math.BigDecimal x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a <ulink url="BigDecimal">BigDecimal</ulink> value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateBigDecimal(String, <ulink url="BigDecimal">BigDecimal</ulink>)</emphasis></para><para>updateBigDecimal Methods updateBigDecimal<computeroutput> Synopsis: public void updateBigDecimal(java.lang.String columnName,                                        java.math.BigDecimal x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - the name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a <ulink url="BigDecimal">BigDecimal</ulink> value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateBinaryStream(int, <ulink url="InputStream">InputStream</ulink>, int)</emphasis></para><para>updateBinaryStream Methods updateBinaryStream<computeroutput> Synopsis: public void updateBinaryStream(int columnIndex,                                          java.io.InputStream x, int length)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> length - the length of the stream</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a binary stream value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateBinaryStream(String, <ulink url="InputStream">InputStream</ulink>, int)</emphasis></para><para>updateBinaryStream Methods updateBinaryStream<computeroutput> Synopsis: public void updateBinaryStream(java.lang.String columnName,                                          java.io.InputStream x,                                          int length)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - the name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> length - of the stream</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a binary stream value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateBlob(int, Blob)</emphasis></para><para>updateBlob Methods updateBlob<computeroutput> Synopsis: public void updateBlob(int columnIndex, java.sql.Blob x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database access error occurs</para><para>Additional Information</para><para>Since</para><itemizedlist mark="bullet" spacing="compact"><listitem> 1.4</listitem>
</itemizedlist><para> Updates the designated column with a java.sql.Blob value.
 The updater methods are used to update column values in the current row or the insert row.
 The updater methods do not update the underlying database; instead the updateRow or insertRow methods are called to update the database.</para><para><emphasis>Method updateBlob(String, Blob)</emphasis></para><para>updateBlob Methods updateBlob<computeroutput> Synopsis: public void updateBlob(java.lang.String columnName, java.sql.Blob x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - the name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database access error occurs</para><para>Additional Information</para><para>Since</para><itemizedlist mark="bullet" spacing="compact"><listitem> 1.4</listitem>
</itemizedlist><para> Updates the designated column with a java.sql.Blob value.
 The updater methods are used to update column values in the current row or the insert row.
 The updater methods do not update the underlying database; instead the updateRow or insertRow methods are called to update the database.</para><para><emphasis>Method updateBoolean(int, boolean)</emphasis></para><para>updateBoolean Methods updateBoolean<computeroutput> Synopsis: public void updateBoolean(int columnIndex, boolean x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a boolean value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateBoolean(String, boolean)</emphasis></para><para>updateBoolean Methods updateBoolean<computeroutput> Synopsis: public void updateBoolean(java.lang.String columnName, boolean x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - the name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a boolean value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis> Method updateByte(int, byte)</emphasis></para><para>updateByte Methods updateByte<computeroutput> Synopsis: public void updateByte(int columnIndex, byte x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a byte value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateByte(String, byte)</emphasis></para><para>updateByte Methods updateByte<computeroutput> Synopsis: public void updateByte(java.lang.String columnName, byte x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - the name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a byte value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateBytes(int, byte[])</emphasis></para><para>updateBytes Methods updateBytes<computeroutput> Synopsis: public void updateBytes(int columnIndex, byte[] x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a byte array value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateBytes(String, byte[])</emphasis></para><para>updateBytes Methods updateBytes<computeroutput> Synopsis: public void updateBytes(java.lang.String columnName, byte[] x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - the name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a byte array value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateCharacterStream(int, Reader, int)</emphasis></para><para>updateCharacterStream Methods updateCharacterStream<computeroutput> Synopsis: public void updateCharacterStream(int columnIndex, java.io.Reader x,                                             int length)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> length - the length of the stream</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a character stream value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateCharacterStream(String, Reader, int)</emphasis></para><para>updateCharacterStream Methods updateCharacterStream<computeroutput> Synopsis: public void updateCharacterStream(java.lang.String columnName,                                             java.io.Reader reader,                                             int length)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - the name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> length - of the stream</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a character stream value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateClob(int, Clob)</emphasis></para><para>updateClob Methods updateClob<computeroutput> Synopsis: public void updateClob(int columnIndex, java.sql.Clob x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database access error occurs</para><para>Additional Information</para><para>Since</para><itemizedlist mark="bullet" spacing="compact"><listitem> 1.4</listitem>
</itemizedlist><para> Updates the designated column with a java.sql.Clob value.
 The updater methods are used to update column values in the current row or the insert row.
 The updater methods do not update the underlying database; instead the updateRow or insertRow methods are called to update the database.</para><para><emphasis>Method updateClob(String, Clob)</emphasis></para><para>updateClob Methods updateClob<computeroutput> Synopsis: public void updateClob(java.lang.String columnName, java.sql.Clob x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - the name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database access error occurs</para><para>Additional Information</para><para>Since</para><itemizedlist mark="bullet" spacing="compact"><listitem> 1.4</listitem>
</itemizedlist><para> Updates the designated column with a java.sql.Clob value.
 The updater methods are used to update column values in the current row or the insert row.
 The updater methods do not update the underlying database; instead the updateRow or insertRow methods are called to update the database.</para><para><emphasis>Method updateDate(int, Date)</emphasis></para><para>updateDate Methods updateDate<computeroutput> Synopsis: public void updateDate(int columnIndex, java.sql.Date x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a Date value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateDate(String, Date)</emphasis></para><para>updateDate Methods updateDate<computeroutput> Synopsis: public void updateDate(java.lang.String columnName, java.sql.Date x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - the name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a Date value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateDouble(int, double)</emphasis></para><para>updateDouble Methods updateDouble<computeroutput> Synopsis: public void updateDouble(int columnIndex, double x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a Double value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateDouble(String, double)</emphasis></para><para>updateDouble Methods updateDouble<computeroutput> Synopsis: public void updateDouble(java.lang.String columnName, double x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - the name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a double value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateFloat(int, float)</emphasis></para><para>updateFloat Methods updateFloat<computeroutput> Synopsis: public void updateFloat(int columnIndex, float x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a float value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateFloat(String, float)</emphasis></para><para>updateFloat Methods updateFloat<computeroutput> Synopsis: public void updateFloat(java.lang.String columnName, float x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - the name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a float value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateInt(int, int)</emphasis></para><para>updateInt Methods updateInt<computeroutput> Synopsis: public void updateInt(int columnIndex, int x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with an integer value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateInt(String, int)</emphasis></para><para>updateInt Methods updateInt<computeroutput> Synopsis: public void updateInt(java.lang.String columnName, int x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - the name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with an integer value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateLong(int, long)</emphasis></para><para>updateLong Methods updateLong<computeroutput> Synopsis: public void updateLong(int columnIndex, long x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><para> * columnIndex - the first column is 1, the second is 2, ...</para><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a long value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateLong(String, long)</emphasis></para><para>updateLong Methods updateLong<computeroutput> Synopsis: public void updateLong(java.lang.String columnName, long x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - the name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para> if a database-access error occurs</para><para>Update a column with a long value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateNull(int)</emphasis></para><para>updateNull Methods updateNull<computeroutput> Synopsis: public void updateNull(int columnIndex) throws java.sql.SQLException; </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Give a nullable column a null value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateNull(String)</emphasis></para><para>updateNull Methods updateNull<computeroutput> Synopsis: public void updateNull(java.lang.String columnName)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><para> * columnName - the name of the column</para><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a null value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateObject(int, Object)</emphasis></para><para>updateObject Methods updateObject<computeroutput> Synopsis: public void updateObject(int columnIndex, java.lang.Object x)               throws java.sql.SQLException;           </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with an Object value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis> Method updateObject(int, Object, int)</emphasis></para><para>updateObject Methods updateObject<computeroutput> Synopsis: public void updateObject(int columnIndex, java.lang.Object x,                                    int scale) throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> scale - For java.sql.Types.DECIMAL or java.sql.Types.NUMERIC types this is the number of digits after the decimal.
 For all other types this value will be ignored.</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with an Object value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateObject(String, Object)</emphasis></para><para>updateObject Methods updateObject<computeroutput> Synopsis: public void updateObject(java.lang.String columnName,                                    java.lang.Object x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - the name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with an Object value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateObject(String, Object, int)</emphasis></para><para>updateObject Methods updateObject<computeroutput> Synopsis: public void updateObject(java.lang.String columnName,                                    java.lang.Object x, int scale)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - the name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> scale - For java.sql.Types.DECIMAL or java.sql.Types.NUMERIC types this is the number of digits after the decimal.
 For all other types this value will be ignored.</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with an Object value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateRef(int, Ref)</emphasis></para><para>updateRef Methods updateRef<computeroutput> Synopsis: public void updateRef(int columnIndex, java.sql.Ref x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database access error occurs</para><para>Additional Information</para><para>Since</para><itemizedlist mark="bullet" spacing="compact"><listitem> 1.4</listitem>
</itemizedlist><para> Updates the designated column with a java.sql.Ref value.
 The updater methods are used to update column values in the current row or the insert row.
 The updater methods do not update the underlying database; instead the updateRow or insertRow methods are called to update the database.</para><para><emphasis>Method updateRef(String, Ref)</emphasis></para><para>updateRef Methods updateRef<computeroutput> Synopsis: public void updateRef(java.lang.String columnName, java.sql.Ref x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - the name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database access error occurs</para><para>Additional Information</para><para>Since</para><itemizedlist mark="bullet" spacing="compact"><listitem> 1.4</listitem>
</itemizedlist><para> Updates the designated column with a java.sql.Ref value.
 The updater methods are used to update column values in the current row or the insert row.
 The updater methods do not update the underlying database; instead the updateRow or insertRow methods are called to update the database.</para><para><emphasis>Method updateRow()</emphasis></para><para>updateRow Methods updateRow<computeroutput> Synopsis: public void updateRow() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs, or if called when on the insert row</para><para>Marks the current row of this rowset as updated but it does not update the row to the underlying data source.
 The method acceptChanges must be called to update the row to the data source.
 It notifies listeners that the row has changed also.
 Cannot be called when on the insert row.</para><para><emphasis>Method updateShort(int, short)</emphasis></para><para>updateShort Methods updateShort<computeroutput> Synopsis: public void updateShort(int columnIndex, short x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a short value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateShort(String, short)</emphasis></para><para>updateShort Methods updateShort<computeroutput> Synopsis: public void updateShort(java.lang.String columnName, short x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - the name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a short value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateString(int, String)</emphasis></para><para>updateString Methods updateString<computeroutput> Synopsis: public void updateString(int columnIndex, java.lang.String x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a String value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateString(String, String)</emphasis></para><para>updateString Methods updateString<computeroutput> Synopsis: public void updateString(java.lang.String columnName,                                    java.lang.String x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - the name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a String value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateTime(int, Time)</emphasis></para><para>updateTime Methods updateTime<computeroutput> Synopsis: public void updateTime(int columnIndex, java.sql.Time x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a Time value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateTime(String, Time)</emphasis></para><para>updateTime Methods updateTime<computeroutput> Synopsis: public void updateTime(java.lang.String columnName, java.sql.Time x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - the name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a Time value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateTimestamp(int, Timestamp)</emphasis></para><para>updateTimestamp Methods updateTimestamp<computeroutput> Synopsis: public void updateTimestamp(int columnIndex, java.sql.Timestamp x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnIndex - the first column is 1, the second is 2, ...</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a Timestamp value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method updateTimestamp(String, Timestamp)</emphasis></para><para>updateTimestamp Methods updateTimestamp<computeroutput> Synopsis: public void updateTimestamp(java.lang.String columnName,                                       java.sql.Timestamp x)               throws java.sql.SQLException;     </computeroutput></para>
<para>Parameters</para><itemizedlist mark="bullet" spacing="compact"><listitem> columnName - the name of the column</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> x - the new column value</listitem>
</itemizedlist><para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs</para><para>Update a column with a Timestamp value.
 The updateXXX() methods are used to update column values in the current row, or the insert row.
 The updateXXX() methods do not update the underlying database, instead the updateRow() or insertRow() methods are called to update the database.</para><para><emphasis>Method wasNull()</emphasis></para><para>wasNull Methods wasNull<computeroutput> Synopsis: public boolean wasNull() throws java.sql.SQLException;     </computeroutput></para>
<para>Exceptions</para><para>SQLException</para><para>if a database-access error occurs.</para><para>A column may have the value of SQL NULL; wasNull reports whether the last column read had this special value.
 Note that you must first call getXXX on a column to try to read its value and then call wasNull() to find if the value was the SQL NULL.</para></section></docbook>