public abstract class BaseRowSet extends Object implements Serializable, Joinable
| Modifier and Type | Method and Description | 
|---|---|
| boolean | absolute(int i)Deprecated.  ResultSet
 Moves the cursor to the given row number in this RowSet object | 
| void | addRowSetListener(RowSetListener rsl)Deprecated.  RowSet
 Registers the given listener so that it will be notified of events
 that occur on this RowSet object. | 
| void | afterLast()Deprecated.  ResultSet
 Moves the cursor to the end of this RowSet object, just after the last
 row. | 
| void | beforeFirst()Deprecated.  ResultSet
 Moves the cursor to the front of this ResultSet object, just before
 the first row. | 
| void | clearParameters()Deprecated.  RowSet
 Clears the parameters set for this RowSet object's command. | 
| void | clearWarnings()Deprecated.  ResultSet
 Clears all warnings reported on this RowSet object. | 
| boolean | columnUpdated(int idx)Deprecated.  CachedRowSet
 Indicates whether the designated column in the current row of this RowSet
 object has been updated. | 
| boolean | columnUpdated(String columnName)Deprecated.  CachedRowSet
 Indicates whether the designated column in the current row of this RowSet
 object has been updated. | 
| int | findColumn(String s)Deprecated.  ResultSet
 Map the column name to a column index. | 
| boolean | first()Deprecated.  ResultSet
 Moves the cursor to the first row in this RowSet object. | 
| Array | getArray(int i)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as an Array value. | 
| Array | getArray(String s)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as an Array value. | 
| InputStream | getAsciiStream(int i)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as an InputStream value. | 
| InputStream | getAsciiStream(String s)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as an InputStream value. | 
| BigDecimal | getBigDecimal(int i)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a BigDecimal value. | 
| BigDecimal | getBigDecimal(int i,
             int x)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a BigDecimal value. | 
| BigDecimal | getBigDecimal(String s)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a BigDecimal value. | 
| BigDecimal | getBigDecimal(String s,
             int n)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a BigDecimal value. | 
| InputStream | getBinaryStream(int i)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as an InputStream value. | 
| InputStream | getBinaryStream(String s)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a an InputStream. | 
| Blob | getBlob(int i)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a Blob value. | 
| Blob | getBlob(String s)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a Blob value. | 
| boolean | getBoolean(int i)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a boolean value. | 
| boolean | getBoolean(String s)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a boolean value. | 
| byte | getByte(int i)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a byte value. | 
| byte | getByte(String s)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a byte value. | 
| byte[] | getBytes(int i)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a byte array value. | 
| byte[] | getBytes(String s)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a byte array value. | 
| Reader | getCharacterStream(int i)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a Reader value. | 
| Reader | getCharacterStream(String s)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a Reader value. | 
| Clob | getClob(int i)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a Clob value. | 
| Clob | getClob(String s)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a Clob value. | 
| String | getCommand()Deprecated.  RowSet
 Retrieves this RowSet object's command property. | 
| int | getConcurrency()Deprecated.  ResultSet
 Retrieves the concurrency mode of this RowSet object. | 
| Connection | getConnection()Deprecated.  WebLogic Extension - Returns a connection associated with this RowSet | 
| String | getCursorName()Deprecated.  ResultSet
 Retrieves the name of the SQL cursor used by this RowSet object. | 
| DataSource | getDataSource()Deprecated.  WebLogic extension - Returns the data source associated with the RowSet. | 
| String | getDataSourceName()Deprecated.  RowSet
 Retrieves the logical name that identifies the data source for this
 RowSet object. | 
| Date | getDate(int i)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a Date value. | 
| Date | getDate(int i,
       Calendar c)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a Date value. | 
| Date | getDate(String s)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a Date value. | 
| Date | getDate(String s,
       Calendar c)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a Date value. | 
| double | getDouble(int i)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a double value. | 
| double | getDouble(String s)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a double value. | 
| boolean | getEscapeProcessing()Deprecated.  RowSet
 Retrieves whether escape processing is enabled for this RowSet object. | 
| int | getFetchDirection()Deprecated.  ResultSet
 Retrieves the fetch direction for this RowSet object. | 
| int | getFetchSize()Deprecated.  RowSet
 Retrieves the fetch size for this RowSet object. | 
| float | getFloat(int i)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a float value. | 
| float | getFloat(String s)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a float value. | 
| int | getHoldability()Deprecated.  ResultSet
 Retrieves the holdability value. | 
| int | getInt(int i)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a int value. | 
| int | getInt(String s)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a int value. | 
| int[] | getKeyColumns()Deprecated.  CachedRowSet
 Returns an array containing one or more column numbers indicating the
 columns that form a key that uniquely identifies a row in this
 RowSet object. | 
| long | getLong(int i)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a long value. | 
| long | getLong(String s)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a long value. | 
| int[] | getMatchColumnIndexes()Deprecated.  Joinable
 Retrieves the indexes of the match columns that were set for this
 RowSet object. | 
| String[] | getMatchColumnNames()Deprecated.  Joinable
 Retrieves the indexes of the match columns that were set for this
 RowSet object . | 
| int | getMaxFieldSize()Deprecated.  RowSet
 Retrieves the maximum number of bytes that may be returned for certain
 column values. | 
| int | getMaxRows()Deprecated.  RowSet
 Retrieves the maximum number of rows that this RowSet object can contain. | 
| ResultSetMetaData | getMetaData()Deprecated.  ResultSet
 Retrieves the number, types and properties of this RowSet object's columns. | 
| Reader | getNCharacterStream(int columnIndex)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of
 this RowSet object as a Reader object. | 
| Reader | getNCharacterStream(String colName)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of
 this RowSet object as a Reader object. | 
| NClob | getNClob(int i)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of
 this RowSet object as a NClob object. | 
| NClob | getNClob(String colName)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of
 this RowSet object as a NClob object. | 
| String | getNString(int columnIndex)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of
 this RowSet object as a String object. | 
| String | getNString(String colName)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of
 this RowSet object as a String object. | 
| Object | getObject(int i)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as an Object value. | 
| Object | getObject(int i,
         Map m)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as an Object value. | 
| Object | getObject(String s)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as an Object value. | 
| Object | getObject(String s,
         Map m)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as an Object value. | 
| String | getPassword()Deprecated.  RowSet
 Retrieves the password used to create a database connection. | 
| int | getQueryTimeout()Deprecated.  RowSet
 Retrieves the maximum number of seconds the driver will wait for
 a statement to execute. | 
| Ref | getRef(int i)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a Ref value. | 
| Ref | getRef(String s)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a Ref value. | 
| int | getRow()Deprecated.  ResultSet
 Retrieves the current row number. | 
| RowId | getRowId(int columnIndex)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of
 this RowSet object as a java.sql.RowId object. | 
| RowId | getRowId(String columnName)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of
 this RowSet object as a java.sql.RowId object. | 
| RowSetWarning | getRowSetWarnings()Deprecated.  CachedRowSet
 Retrieves the first warning reported by calls on this RowSet object. | 
| short | getShort(int i)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a short value. | 
| short | getShort(String s)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a short value. | 
| boolean | getShowDeleted()Deprecated.  CachedRowSet
 Retrieves a boolean indicating whether rows marked for deletion appear
 in the set of current rows. | 
| SQLXML | getSQLXML(int columnIndex)Deprecated.  ResultSet
 Updates the designated column with a SQLXML value. | 
| SQLXML | getSQLXML(String colName)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of
 this RowSet object as a SQLXML object. | 
| Statement | getStatement()Deprecated.  ResultSet
 Retrieves the Statement object that produced this RowSet object. | 
| String | getString(int i)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a String value | 
| String | getString(String s)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a String value. | 
| SyncProvider | getSyncProvider()Deprecated.  CachedRowSet
 Retrieves the SyncProvider implementation for this CachedRowSet object. | 
| String | getTableName()Deprecated.  CachedRowSet
 Returns an identifier for the object (table) that was used to create
 this RowSet object | 
| Time | getTime(int i)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a Time value. | 
| Time | getTime(int i,
       Calendar c)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a Time value. | 
| Time | getTime(String s)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a Time value. | 
| Time | getTime(String s,
       Calendar c)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a Time value. | 
| Timestamp | getTimestamp(int i)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a Timestamp value. | 
| Timestamp | getTimestamp(int i,
            Calendar c)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a Timestamp value. | 
| Timestamp | getTimestamp(String s)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a Timestamp value. | 
| Timestamp | getTimestamp(String s,
            Calendar c)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as a Timestamp value. | 
| int | getTransactionIsolation()Deprecated.  RowSet
 Retrieves the transaction isolation level set for this RowSet object. | 
| int | getType()Deprecated.  ResultSet
 Retrieves the type of this ResultSet object. | 
| Map | getTypeMap()Deprecated.  RowSet
 Retrieves the Map object associated with this RowSet object, which
 specifies the custom mapping of SQL user-defined types, if any. | 
| InputStream | getUnicodeStream(int i)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as an InputStream value. | 
| InputStream | getUnicodeStream(String s)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as an InputStream value. | 
| String | getUrl()Deprecated.  RowSet
 Retrieves the url property this RowSet object will use to create a
 connection if it uses the DriverManager instead of a DataSource object
 to establish the connection. | 
| URL | getURL(int i)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as an URL value. | 
| URL | getURL(String s)Deprecated.  ResultSet
 Retrieves the value of the designated column in the current row of this
 RowSet object as an URL value. | 
| String | getUsername()Deprecated.  RowSet
 Retrieves the username used to create a database connection for
 this RowSet object. | 
| SQLWarning | getWarnings()Deprecated.  ResultSet
 Retrieves the first warning reported by calls on this RowSet object. | 
| boolean | isAfterLast()Deprecated.  ResultSet
 Retrieves whether the cursor is after the last row in this RowSet object. | 
| boolean | isBeforeFirst()Deprecated.  ResultSet
 Retrieves whether the cursor is before the first row in this RowSet object. | 
| boolean | isClosed()Deprecated.  ResultSet
 Is the RowSet closed? | 
| boolean | isFirst()Deprecated.  ResultSet
 Retrieves whether the cursor is on the first row of this RowSet object. | 
| boolean | isLast()Deprecated.  ResultSet
 Retrieves whether the cursor is on the last row of this ResultSet object. | 
| boolean | isReadOnly()Deprecated.  RowSet
 Retrieves whether this RowSet object is read-only. | 
| boolean | last()Deprecated.  ResultSet
 Moves the cursor to the last row in this RowSet object. | 
| boolean | next()Deprecated.  ResultSet
 Moves the cursor down one row from its current position. | 
| boolean | previous()Deprecated.  ResultSet
 Moves the cursor to the previous row in this RowSet object. | 
| boolean | relative(int i)Deprecated.  ResultSet
 Moves the cursor a relative number of rows, either positive or negative. | 
| void | removeRowSetListener(RowSetListener rsl)Deprecated.  RowSet
 Removes the specified listener from the list of components that
 will be notified when an event occurs on this RowSet object. | 
| boolean | rowDeleted()Deprecated.  ResultSet
 Retrieves whether a row has been deleted. | 
| boolean | rowInserted()Deprecated.  ResultSet
 Retrieves whether the current row has had an insertion. | 
| boolean | rowUpdated()Deprecated.  ResultSet
 Retrieves whether the current row has been updated. | 
| void | setArray(int i,
        Array x)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to the
 given Array value. | 
| void | setAsciiStream(int parameterIndex,
              InputStream x)Deprecated.  ResultSet
 Sets the designated parameter in this RowSet object's command to the
 given input stream. | 
| void | setAsciiStream(int i,
              InputStream is,
              int x)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to the
 given Java InputStream value. | 
| void | setAsciiStream(String parameterName,
              InputStream x)Deprecated.  ResultSet
 Sets the designated parameter to the given input stream. | 
| void | setAsciiStream(String parameterName,
              InputStream x,
              int length)Deprecated.  ResultSet
 Sets the designated parameter to the given input stream. | 
| void | setBigDecimal(int i,
             BigDecimal bd)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to the
 given Java BigDecimal value. | 
| void | setBigDecimal(String parameterName,
             BigDecimal x)Deprecated.  ResultSet
 Sets the designated parameter to the given java.math.BigDecimal value. | 
| void | setBinaryStream(int parameterIndex,
               InputStream x)Deprecated.  ResultSet
 Sets the designated parameter in this RowSet object's command to the
 given input stream. | 
| void | setBinaryStream(int i,
               InputStream is,
               int x)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to the
 given Java InputStream value. | 
| void | setBinaryStream(String parameterName,
               InputStream x)Deprecated.  ResultSet
 Sets the designated parameter to the given input stream. | 
| void | setBinaryStream(String parameterName,
               InputStream x,
               int length)Deprecated.  ResultSet
 Sets the designated parameter to the given input stream, which will have
 the specified number of bytes. | 
| void | setBlob(int i,
       Blob b)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to the
 given Blob value. | 
| void | setBlob(int parameterIndex,
       InputStream inputStream)Deprecated.  ResultSet
 Sets the designated parameter to a InputStream object. | 
| void | setBlob(int parameterIndex,
       InputStream inputStream,
       long length)Deprecated.  ResultSet
 Sets the designated parameter to a InputStream object. | 
| void | setBlob(String parameterName,
       Blob x)Deprecated.  ResultSet
 Sets the designated parameter to the given java.sql.Blob object. | 
| void | setBlob(String parameterName,
       InputStream inputStream)Deprecated.  ResultSet
 Sets the designated parameter to a InputStream object. | 
| void | setBlob(String parameterName,
       InputStream inputStream,
       long length)Deprecated.  ResultSet
 Sets the designated parameter to a InputStream object. | 
| void | setBoolean(int i,
          boolean b)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to the
 given Java boolean value. | 
| void | setBoolean(String parameterName,
          boolean x)Deprecated.  ResultSet
 Sets the designated parameter to the given Java boolean value. | 
| void | setByte(int i,
       byte b)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to the
 given Java byte value. | 
| void | setByte(String parameterName,
       byte x)Deprecated.  ResultSet
 Sets the designated parameter to the given Java byte value. | 
| void | setBytes(int i,
        byte[] b)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to the
 given Java array of bytes value. | 
| void | setBytes(String parameterName,
        byte[] x)Deprecated.  ResultSet
 Sets the designated parameter to the given Java array of bytes. | 
| void | setCharacterStream(int parameterIndex,
                  Reader reader)Deprecated.  ResultSet
 Sets the designated parameter in this RowSet object's command to the
 given Reader object. | 
| void | setCharacterStream(int i,
                  Reader r,
                  int x)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to the
 given  java.io.Reader. | 
| void | setCharacterStream(String parameterName,
                  Reader reader)Deprecated.  ResultSet
 Sets the designated parameter to the given Reader object. | 
| void | setCharacterStream(String parameterName,
                  Reader reader,
                  int length)Deprecated.  ResultSet
 Sets the designated parameter to the given Reader object, which is the
 given number of characters long. | 
| void | setClob(int i,
       Clob c)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to the
 given Clob value. | 
| void | setClob(int parameterIndex,
       Reader reader)Deprecated.  ResultSet
 Sets the designated parameter to a Reader object. | 
| void | setClob(int parameterIndex,
       Reader reader,
       long length)Deprecated.  ResultSet
 Sets the designated parameter to a Reader object. | 
| void | setClob(String parameterName,
       Clob x)Deprecated.  ResultSet
 Sets the designated parameter to the given java.sql.Clob object. | 
| void | setClob(String parameterName,
       Reader reader)Deprecated.  ResultSet
 Sets the designated parameter to a Reader object. | 
| void | setClob(String parameterName,
       Reader reader,
       long length)Deprecated.  ResultSet
 Sets the designated parameter to a Reader object. | 
| void | setCommand(String s)Deprecated.  RowSet
 Sets this RowSet object's command property to the given SQL query. | 
| void | setConcurrency(int c)Deprecated.  ResultSet
 Sets the concurrency of this RowSet object to the given concurrency level. | 
| void | setDataSource(DataSource dataSource)Deprecated.  WebLogic extension - Sets the data source associated with the RowSet. | 
| void | setDataSourceName(String s)Deprecated.  RowSet
 The value of the data source name property can be used to do a lookup
 of a DataSource object that has been registered with a naming service. | 
| void | setDate(int i,
       Date d)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to the
 given Java Date value. | 
| void | setDate(int i,
       Date d,
       Calendar c)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to the
 given Java Date value. | 
| void | setDate(String parameterName,
       Date x)Deprecated.  ResultSet
 Sets the designated parameter to the given java.sql.Date value using the
 default time zone of the virtual machine that is running the application. | 
| void | setDate(String parameterName,
       Date x,
       Calendar cal)Deprecated.  ResultSet
 Sets the designated parameter to the given java.sql.Date value, using the
 given Calendar object. | 
| void | setDouble(int i,
         double d)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to the
 given Java double value. | 
| void | setDouble(String parameterName,
         double x)Deprecated.  ResultSet
 Sets the designated parameter to the given Java double value. | 
| void | setEscapeProcessing(boolean b)Deprecated.  RowSet
 Sets escape processing for this RowSet object on or off. | 
| void | setFetchDirection(int i)Deprecated.  ResultSet
 Gives a hint as to the direction in which the rows in this RowSet object
 will be processed. | 
| void | setFetchSize(int i)Deprecated.  RowSet
 Gives the JDBC driver a hint as to the number of rows that should be
 fetched from the database when more rows are needed for this RowSet
 object. | 
| void | setFloat(int i,
        float f)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to the
 given Java float value. | 
| void | setFloat(String parameterName,
        float x)Deprecated.  ResultSet
 Sets the designated parameter to the given Java float value. | 
| void | setInt(int i,
      int x)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to the
 given Java int value. | 
| void | setInt(String parameterName,
      int x)Deprecated.  ResultSet
 Sets the designated parameter to the given Java int value. | 
| void | setKeyColumns(int[] keys)Deprecated.  CachedRowSet
 Sets this RowSet object's keyCols field with the given array of
 column numbers, which forms a key for uniquely identifying a row in this
 CachedRowSet object. | 
| void | setLong(int i,
       long l)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to the
 given Java long value. | 
| void | setLong(String parameterName,
       long x)Deprecated.  ResultSet
 Sets the designated parameter to the given Java long value. | 
| void | setMatchColumn(int columnIdx)Deprecated.  Joinable
 Sets the designated column as the match column for this RowSet object. | 
| void | setMatchColumn(int[] columnIdxes)Deprecated.  Joinable
 Sets the designated column as the match column for this RowSet object. | 
| void | setMatchColumn(String columnName)Deprecated.  Joinable
 Sets the designated column as the match column for this RowSet object. | 
| void | setMatchColumn(String[] columnNames)Deprecated.  Joinable
 Sets the designated column as the match column for this RowSet object. | 
| void | setMaxFieldSize(int x)Deprecated.  RowSet
 Sets the maximum number of bytes that can be returned for a column value
 to the given number of bytes. | 
| void | setMaxRows(int n)Deprecated.  RowSet
 Sets the maximum number of rows that this RowSet object can contain to the specified number. | 
| void | setMetaData(RowSetMetaData md)Deprecated.  CachedRowSet
 Sets the metadata for this RowSet object with the given RowSetMetaData
 object. | 
| void | setNCharacterStream(int parameterIndex,
                   Reader value)Deprecated.  ResultSet
 Sets the designated parameter in this RowSet object's command to
 a Reader object. | 
| void | setNCharacterStream(int i,
                   Reader r,
                   long x)Deprecated.  ResultSet
 Updates the designated column with a Reader value. | 
| void | setNCharacterStream(String parameterName,
                   Reader value)Deprecated.  ResultSet
 Sets the designated parameter to a Reader object. | 
| void | setNCharacterStream(String parameterName,
                   Reader value,
                   long length)Deprecated.  ResultSet
 Sets the designated parameter to a Reader object. | 
| void | setNClob(int i,
        NClob c)Deprecated.  ResultSet
 Updates the designated column with a NClob value. | 
| void | setNClob(int parameterIndex,
        Reader reader)Deprecated.  ResultSet
 Sets the designated parameter to a Reader object. | 
| void | setNClob(int parameterIndex,
        Reader reader,
        long length)Deprecated.  ResultSet
 Sets the designated parameter to a Reader object. | 
| void | setNClob(String parameterName,
        NClob value)Deprecated.  ResultSet
 Sets the designated parameter to a java.sql.NClob object. | 
| void | setNClob(String parameterName,
        Reader reader)Deprecated.  ResultSet
 Sets the designated parameter to a Reader object. | 
| void | setNClob(String parameterName,
        Reader reader,
        long length)Deprecated.  ResultSet
 Sets the designated parameter to a Reader object. | 
| void | setNString(int i,
          String s)Deprecated.  ResultSet
 Updates the designated column with a String value. | 
| void | setNString(String parameterName,
          String value)Deprecated.  ResultSet
 Sets the designated paramter to the given String object. | 
| void | setNull(int i,
       int x)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to SQL NULL. | 
| void | setNull(int i,
       int x,
       String s)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to SQL NULL. | 
| void | setNull(String parameterName,
       int sqlType)Deprecated.  ResultSet
 Sets the designated parameter to SQL NULL. | 
| void | setNull(String parameterName,
       int sqlType,
       String typeName)Deprecated.  ResultSet
 Sets the designated parameter to SQL NULL. | 
| void | setObject(int i,
         Object o)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to the
 given Java Object. | 
| void | setObject(int i,
         Object o,
         int x)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to the
 given Java Object value. | 
| void | setObject(int i,
         Object o,
         int x,
         int scale)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to the
 given Java Object value. | 
| void | setObject(String parameterName,
         Object x)Deprecated.  ResultSet
 Sets the value of the designated parameter with the given object. | 
| void | setObject(String parameterName,
         Object x,
         int targetSqlType)Deprecated.  ResultSet
 Sets the value of the designated parameter with the given object. | 
| void | setObject(String parameterName,
         Object x,
         int targetSqlType,
         int scaleOrLength)Deprecated.  ResultSet
 Sets the value of the designated parameter with the given object. | 
| void | setPassword(String p)Deprecated.  RowSet
 Sets the database password for this RowSet object to the given String. | 
| void | setQueryTimeout(int t)Deprecated.  RowSet
 Sets the maximum time the driver will wait for a statement to execute
 to the given number of seconds. | 
| void | setReadOnly(boolean b)Deprecated.  RowSet
 Sets whether this RowSet object is read-only to the given boolean. | 
| void | setRef(int i,
      Ref r)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to the
 given Ref value. | 
| void | setRowId(int i,
        RowId rowid)Deprecated.  ResultSet
 Updates the designated column with a RowId value. | 
| void | setRowId(String parameterName,
        RowId x)Deprecated.  ResultSet
 Sets the designated parameter to the given java.sql.RowId object. | 
| void | setShort(int i,
        short s)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to the
 given Java short value. | 
| void | setShort(String parameterName,
        short x)Deprecated.  ResultSet
 Sets the designated parameter to the given Java short value. | 
| void | setShowDeleted(boolean b)Deprecated.  CachedRowSet
 Sets the property showDeleted to the given boolean value, which
 determines whether rows marked for deletion appear in the set of current
 rows. | 
| void | setSQLXML(int i,
         SQLXML sqlxml)Deprecated.  ResultSet
 Updates the designated column with a SQLXML value. | 
| void | setSQLXML(String parameterName,
         SQLXML xmlObject)Deprecated.  ResultSet
 Sets the designated parameter to the given java.sql.SQLXML object. | 
| void | setString(int i,
         String s)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to the
 given Java String value. | 
| void | setString(String parameterName,
         String x)Deprecated.  ResultSet
 Sets the designated parameter to the given Java String value. | 
| void | setSyncProvider(String providerName)Deprecated.  CachedRowSet
 Sets the SyncProvider implementation for this CachedRowSet object. | 
| void | setTableName(String tabName)Deprecated.  CachedRowSet
 Sets the identifier for the table from which this CachedRowSet object was
 derived to the given table name. | 
| void | setTime(int i,
       Time t)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to the
 given Java Time value. | 
| void | setTime(int i,
       Time t,
       Calendar c)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to the
 given Java Time value. | 
| void | setTime(String parameterName,
       Time x)Deprecated.  ResultSet
 Sets the designated parameter to the given java.sql.Time value. | 
| void | setTime(String parameterName,
       Time x,
       Calendar cal)Deprecated.  ResultSet
 Sets the designated parameter in this RowSet object's command with the
 given java.sql.Time value. | 
| void | setTimestamp(int i,
            Timestamp t)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to the
 given Java Timestamp value. | 
| void | setTimestamp(int i,
            Timestamp t,
            Calendar c)Deprecated.  RowSet
 Sets the designated parameter in this RowSet object's command to the
 given Java Timestamp value. | 
| void | setTimestamp(String parameterName,
            Timestamp x)Deprecated.  ResultSet
 Sets the designated parameter to the given java.sql.Timestamp value. | 
| void | setTimestamp(String parameterName,
            Timestamp x,
            Calendar cal)Deprecated.  ResultSet
 Sets the designated parameter to the given java.sql.Timestamp value,
 using the given Calendar object. | 
| void | setTransactionIsolation(int i)Deprecated.  RowSet
 Sets the transaction isolation level for this RowSet obejct. | 
| void | setType(int t)Deprecated.  ResultSet
 Sets the type of this RowSet object to the given type. | 
| void | setTypeMap(Map m)Deprecated.  RowSet
 Installs the given java.util.Map object as the default type map for this
 RowSet object. | 
| void | setURL(int parameterIndex,
      URL x)Deprecated.  RowSet
 Sets the designated parameter to the given java.net.URL value. | 
| void | setUrl(String u)Deprecated.  RowSet
 Sets the URL this RowSet object will use when it uses the DriverManager
 to create a connection. | 
| void | setUsername(String un)Deprecated.  RowSet
 Sets the username property for this RowSet object to the given String. | 
| abstract int | size()Deprecated.  Returns the number of rows in this RowSet object | 
| void | unsetMatchColumn(int columnIdx)Deprecated.  Joinable
 Unsets the designated columns as the match column for this RowSet object. | 
| void | unsetMatchColumn(int[] columnIdxes)Deprecated.  Joinable
 Unsets the designated columns as the match column for this RowSet object. | 
| void | unsetMatchColumn(String columnName)Deprecated.  Joinable
 Unsets the designated columns as the match column for this RowSet object. | 
| void | unsetMatchColumn(String[] columnNames)Deprecated.  Joinable
 Unsets the designated columns as the match column for this RowSet object. | 
| void | updateArray(int a,
           Array b)Deprecated.  ResultSet
 Updates the designated column with an Array value. | 
| void | updateArray(String s,
           Array b)Deprecated.  ResultSet
 Updates the designated column with an Array value. | 
| void | updateAsciiStream(int columnIndex,
                 InputStream x)Deprecated.  ResultSet
 Updates the designated column with a InputStream value. | 
| void | updateAsciiStream(int i,
                 InputStream is,
                 int n)Deprecated.  ResultSet
 Updates the designated column with a InputStream value. | 
| void | updateAsciiStream(int columnIndex,
                 InputStream x,
                 long length)Deprecated.  ResultSet
 Updates the designated column with a InputStream value. | 
| void | updateAsciiStream(String columnLabel,
                 InputStream x)Deprecated.  ResultSet
 Updates the designated column with a InputStream value. | 
| void | updateAsciiStream(String s,
                 InputStream is,
                 int x)Deprecated.  ResultSet
 Updates the designated column with a InputStream value. | 
| void | updateAsciiStream(String columnLabel,
                 InputStream x,
                 long length)Deprecated.  ResultSet
 Updates the designated column with a InputStream value. | 
| void | updateBigDecimal(int i,
                BigDecimal bd)Deprecated.  ResultSet
 Updates the designated column with a BigDecimal value. | 
| void | updateBigDecimal(String s,
                BigDecimal bd)Deprecated.  ResultSet
 Updates the designated column with a BigDecimal value. | 
| void | updateBinaryStream(int columnIndex,
                  InputStream x)Deprecated.  ResultSet
 Updates the designated column with a InputStream value. | 
| void | updateBinaryStream(int i,
                  InputStream is,
                  int n)Deprecated.  ResultSet
 Updates the designated column with a InputStream value. | 
| void | updateBinaryStream(int columnIndex,
                  InputStream x,
                  long length)Deprecated.  ResultSet
 Updates the designated column with a InputStream value. | 
| void | updateBinaryStream(String columnLabel,
                  InputStream x)Deprecated.  ResultSet
 Updates the designated column with a InputStream value. | 
| void | updateBinaryStream(String s,
                  InputStream is,
                  int x)Deprecated.  ResultSet
 Updates the designated column with a InputStream value. | 
| void | updateBinaryStream(String columnLabel,
                  InputStream x,
                  long length)Deprecated.  ResultSet
 Updates the designated column with a InputStream value. | 
| void | updateBlob(int a,
          Blob b)Deprecated.  ResultSet
 Updates the designated column with a Blob value. | 
| void | updateBlob(int columnIndex,
          InputStream inputStream)Deprecated.  ResultSet
 Updates the designated column with a InputStream value. | 
| void | updateBlob(int columnIndex,
          InputStream inputStream,
          long length)Deprecated.  ResultSet
 Updates the designated column with a InputStream value. | 
| void | updateBlob(String s,
          Blob b)Deprecated.  ResultSet
 Updates the designated column with a Blob value. | 
| void | updateBlob(String columnLabel,
          InputStream inputStream)Deprecated.  ResultSet
 Updates the designated column with a InputStream value. | 
| void | updateBlob(String columnLabel,
          InputStream inputStream,
          long length)Deprecated.  ResultSet
 Updates the designated column with a InputStream value. | 
| void | updateBoolean(int i,
             boolean b)Deprecated.  ResultSet
 Updates the designated column with a boolean value. | 
| void | updateBoolean(String s,
             boolean b)Deprecated.  ResultSet
 Updates the designated column with a boolean value. | 
| void | updateByte(int i,
          byte b)Deprecated.  ResultSet
 Updates the designated column with a byte value. | 
| void | updateByte(String s,
          byte b)Deprecated.  ResultSet
 Updates the designated column with a byte value. | 
| void | updateBytes(int i,
           byte[] b)Deprecated.  ResultSet
 Updates the designated column with a byte array value. | 
| void | updateBytes(String s,
           byte[] b)Deprecated.  ResultSet
 Updates the designated column with a byte array value. | 
| void | updateCharacterStream(int columnIndex,
                     Reader x)Deprecated.  ResultSet
 Updates the designated column with a Reader value. | 
| void | updateCharacterStream(int i,
                     Reader r,
                     int n)Deprecated.  ResultSet
 Updates the designated column with a Reader value. | 
| void | updateCharacterStream(int columnIndex,
                     Reader x,
                     long length)Deprecated.  ResultSet
 Updates the designated column with a Reader value. | 
| void | updateCharacterStream(String columnLabel,
                     Reader x)Deprecated.  ResultSet
 Updates the designated column with a Reader value. | 
| void | updateCharacterStream(String s,
                     Reader r,
                     int x)Deprecated.  ResultSet
 Updates the designated column with a Reader value. | 
| void | updateCharacterStream(String columnLabel,
                     Reader x,
                     long length)Deprecated.  ResultSet
 Updates the designated column with a Reader value. | 
| void | updateClob(int a,
          Clob b)Deprecated.  ResultSet
 Updates the designated column with a Clob value. | 
| void | updateClob(int columnIndex,
          Reader reader)Deprecated.  ResultSet
 Updates the designated column with a Reader value. | 
| void | updateClob(int columnIndex,
          Reader reader,
          long length)Deprecated.  ResultSet
 Updates the designated column with a Reader value. | 
| void | updateClob(String s,
          Clob b)Deprecated.  ResultSet
 Updates the designated column with a Clob value. | 
| void | updateClob(String columnLabel,
          Reader x)Deprecated.  ResultSet
 Updates the designated column with a Reader value. | 
| void | updateClob(String columnLabel,
          Reader x,
          long length)Deprecated.  ResultSet
 Updates the designated column with a Reader value. | 
| void | updateDate(int i,
          Date d)Deprecated.  ResultSet
 Updates the designated column with a Date value. | 
| void | updateDate(String s,
          Date d)Deprecated.  ResultSet
 Updates the designated column with a Date value. | 
| void | updateDouble(int i,
            double d)Deprecated.  ResultSet
 Updates the designated column with a double value. | 
| void | updateDouble(String s,
            double d)Deprecated.  ResultSet
 Updates the designated column with a double value. | 
| void | updateFloat(int i,
           float f)Deprecated.  ResultSet
 Updates the designated column with a float value. | 
| void | updateFloat(String s,
           float f)Deprecated.  ResultSet
 Updates the designated column with a float value. | 
| void | updateInt(int i,
         int x)Deprecated.  ResultSet
 Updates the designated column with a int value. | 
| void | updateInt(String s,
         int x)Deprecated.  ResultSet
 Updates the designated column with a int value. | 
| void | updateLong(int i,
          long l)Deprecated.  ResultSet
 Updates the designated column with a long value. | 
| void | updateLong(String s,
          long l)Deprecated.  ResultSet
 Updates the designated column with a long value. | 
| void | updateNCharacterStream(int columnIndex,
                      Reader x)Deprecated.  ResultSet
 Updates the designated column with a Reader value. | 
| void | updateNCharacterStream(int i,
                      Reader r,
                      int n)Deprecated.  ResultSet
 Updates the designated column with a Reader value. | 
| void | updateNCharacterStream(int columnIndex,
                      Reader x,
                      long length)Deprecated.  ResultSet
 Updates the designated column with a Reader value. | 
| void | updateNCharacterStream(String columnLabel,
                      Reader reader)Deprecated.  ResultSet
 Updates the designated column with a Reader value. | 
| void | updateNCharacterStream(String s,
                      Reader r,
                      int n)Deprecated.  ResultSet
 Updates the designated column with a Reader value. | 
| void | updateNCharacterStream(String columnLabel,
                      Reader reader,
                      long length)Deprecated.  ResultSet
 Updates the designated column with a Reader value. | 
| void | updateNClob(int columnIndex,
           NClob nClob)Deprecated.  ResultSet
 Updates the designated column with a NClob value. | 
| void | updateNClob(int columnIndex,
           Reader reader)Deprecated.  ResultSet
 Updates the designated column with a Reader value. | 
| void | updateNClob(int columnIndex,
           Reader reader,
           long length)Deprecated.  ResultSet
 Updates the designated column with a Reader value. | 
| void | updateNClob(String columnName,
           NClob nClob)Deprecated.  ResultSet
 Updates the designated column with a NClob value. | 
| void | updateNClob(String columnLabel,
           Reader reader)Deprecated.  ResultSet
 Updates the designated column with a Reader value. | 
| void | updateNClob(String columnLabel,
           Reader reader,
           long length)Deprecated.  ResultSet
 Updates the designated column with a Reader value. | 
| void | updateNString(int columnIndex,
             String nString)Deprecated.  ResultSet
 Updates the designated column with a String value. | 
| void | updateNString(String columnName,
             String nString)Deprecated.  ResultSet
 Updates the designated column with a String value. | 
| void | updateNull(int i)Deprecated.  ResultSet
 Updates the designated column with a NULL value. | 
| void | updateNull(String s)Deprecated.  ResultSet
 Updates the designated column with a NULL value. | 
| void | updateObject(int i,
            Object o)Deprecated.  ResultSet
 Updates the designated column with an Object value. | 
| void | updateObject(int i,
            Object o,
            int x)Deprecated.  ResultSet
 Updates the designated column with an Object value. | 
| void | updateObject(String s,
            Object o)Deprecated.  ResultSet
 Updates the designated column with an Object value. | 
| void | updateObject(String s,
            Object o,
            int x)Deprecated.  ResultSet
 Updates the designated column with an Object value. | 
| void | updateRef(int a,
         Ref b)Deprecated.  ResultSet
 Updates the designated column with a Ref value. | 
| void | updateRef(String s,
         Ref b)Deprecated.  ResultSet
 Updates the designated column with a Ref value. | 
| void | updateRowId(int columnIndex,
           RowId x)Deprecated.  ResultSet
 Updates the designated column with a RowId value. | 
| void | updateRowId(String columnName,
           RowId x)Deprecated.  ResultSet
 Updates the designated column with a RowId value. | 
| void | updateShort(int i,
           short s)Deprecated.  ResultSet
 Updates the designated column with a short value. | 
| void | updateShort(String s,
           short x)Deprecated.  ResultSet
 Updates the designated column with a short value. | 
| void | updateSQLXML(int columnIndex,
            SQLXML o)Deprecated.  ResultSet
 Updates the designated column with a SQLXML value. | 
| void | updateSQLXML(String columnName,
            SQLXML o)Deprecated.  ResultSet
 Updates the designated column with a SQLXML value. | 
| void | updateString(int i,
            String s)Deprecated.  ResultSet
 Updates the designated column with a String value. | 
| void | updateString(String s,
            String n)Deprecated.  ResultSet
 Updates the designated column with a String value. | 
| void | updateTime(int i,
          Time t)Deprecated.  ResultSet
 Updates the designated column with a Time value. | 
| void | updateTime(String s,
          Time t)Deprecated.  ResultSet
 Updates the designated column with a Time value. | 
| void | updateTimestamp(int i,
               Timestamp t)Deprecated.  ResultSet
 Updates the designated column with a Timestamp value. | 
| void | updateTimestamp(String s,
               Timestamp t)Deprecated.  ResultSet
 Updates the designated column with a Timestamp value. | 
| boolean | wasNull()Deprecated.  ResultSet
 Reports whether the last column read had a value of SQL NULL. | 
public abstract int size()
public int getRow()
public boolean absolute(int i)
                 throws SQLException
SQLExceptionpublic boolean relative(int i)
                 throws SQLException
SQLExceptionpublic void beforeFirst()
                 throws SQLException
SQLExceptionpublic boolean first()
              throws SQLException
SQLExceptionpublic boolean next()
             throws SQLException
SQLExceptionpublic boolean previous()
                 throws SQLException
SQLExceptionpublic boolean last()
             throws SQLException
SQLExceptionpublic void afterLast()
               throws SQLException
SQLExceptionpublic boolean isBeforeFirst()
                      throws SQLException
SQLExceptionpublic boolean isAfterLast()
                    throws SQLException
SQLExceptionpublic boolean isFirst()
                throws SQLException
SQLExceptionpublic boolean isLast()
               throws SQLException
SQLExceptionpublic boolean rowUpdated()
                   throws SQLException
SQLExceptionpublic boolean rowInserted()
                    throws SQLException
SQLExceptionpublic boolean rowDeleted()
                   throws SQLException
SQLExceptionpublic boolean columnUpdated(int idx)
                      throws SQLException
SQLExceptionpublic boolean columnUpdated(String columnName) throws SQLException
SQLExceptionpublic ResultSetMetaData getMetaData() throws SQLException
SQLExceptionpublic void setMetaData(RowSetMetaData md) throws SQLException
SQLExceptionpublic boolean isReadOnly()
public void setReadOnly(boolean b)
public void setTableName(String tabName) throws SQLException
SQLExceptionpublic String getTableName() throws SQLException
SQLExceptionpublic int[] getKeyColumns()
                    throws SQLException
SQLExceptionpublic void setKeyColumns(int[] keys)
                   throws SQLException
SQLExceptionpublic boolean getShowDeleted()
                       throws SQLException
SQLExceptionpublic void setShowDeleted(boolean b)
                    throws SQLException
SQLExceptionpublic SQLWarning getWarnings() throws SQLException
SQLExceptionpublic void clearWarnings()
                   throws SQLException
SQLExceptionpublic RowSetWarning getRowSetWarnings()
public String getCursorName() throws SQLException
SQLExceptionpublic Statement getStatement() throws SQLException
SQLExceptionpublic String getDataSourceName()
public void setDataSourceName(String s)
public DataSource getDataSource() throws SQLException
SQLExceptionpublic void setDataSource(DataSource dataSource)
public String getUrl()
public void setUrl(String u)
public String getUsername()
public void setUsername(String un)
public String getPassword()
public void setPassword(String p)
public Connection getConnection() throws SQLException
SQLExceptionpublic int getTransactionIsolation()
public void setTransactionIsolation(int i)
                             throws SQLException
SQLExceptionpublic String getCommand()
public void setCommand(String s)
public int getQueryTimeout()
public void setQueryTimeout(int t)
public int getMaxRows()
public void setMaxRows(int n)
public int getMaxFieldSize()
public void setMaxFieldSize(int x)
public boolean getEscapeProcessing()
public void setEscapeProcessing(boolean b)
public int getConcurrency()
public void setConcurrency(int c)
public int getType()
public void setType(int t)
public int getFetchDirection()
public void setFetchDirection(int i)
                       throws SQLException
SQLExceptionpublic int getFetchSize()
public void setFetchSize(int i)
public Map getTypeMap()
public void setTypeMap(Map m)
public void clearParameters()
public void setString(int i,
                      String s)
               throws SQLException
SQLExceptionpublic void setBoolean(int i,
                       boolean b)
                throws SQLException
SQLExceptionpublic void setLong(int i,
                    long l)
             throws SQLException
SQLExceptionpublic void setInt(int i,
                   int x)
            throws SQLException
SQLExceptionpublic void setShort(int i,
                     short s)
              throws SQLException
SQLExceptionpublic void setDouble(int i,
                      double d)
               throws SQLException
SQLExceptionpublic void setFloat(int i,
                     float f)
              throws SQLException
SQLExceptionpublic void setBigDecimal(int i,
                          BigDecimal bd)
                   throws SQLException
SQLExceptionpublic void setBinaryStream(int i,
                            InputStream is,
                            int x)
                     throws SQLException
SQLExceptionpublic void setByte(int i,
                    byte b)
             throws SQLException
SQLExceptionpublic void setBytes(int i,
                     byte[] b)
              throws SQLException
SQLExceptionpublic void setNull(int i,
                    int x)
             throws SQLException
SQLExceptionpublic void setNull(int i,
                    int x,
                    String s)
             throws SQLException
SQLExceptionpublic void setObject(int i,
                      Object o)
               throws SQLException
SQLExceptionpublic void setObject(int i,
                      Object o,
                      int x)
               throws SQLException
SQLExceptionpublic void setObject(int i,
                      Object o,
                      int x,
                      int scale)
               throws SQLException
SQLExceptionpublic void setDate(int i,
                    Date d)
             throws SQLException
SQLExceptionpublic void setDate(int i,
                    Date d,
                    Calendar c)
             throws SQLException
SQLExceptionpublic void setTime(int i,
                    Time t)
             throws SQLException
SQLExceptionpublic void setTime(int i,
                    Time t,
                    Calendar c)
             throws SQLException
SQLExceptionpublic void setTimestamp(int i,
                         Timestamp t)
                  throws SQLException
SQLExceptionpublic void setTimestamp(int i,
                         Timestamp t,
                         Calendar c)
                  throws SQLException
SQLExceptionpublic void setAsciiStream(int i,
                           InputStream is,
                           int x)
                    throws SQLException
SQLExceptionpublic void setCharacterStream(int i,
                               Reader r,
                               int x)
                        throws SQLException
SQLExceptionpublic void setBlob(int i,
                    Blob b)
             throws SQLException
SQLExceptionpublic void setClob(int i,
                    Clob c)
             throws SQLException
SQLExceptionpublic void setArray(int i,
                     Array x)
              throws SQLException
SQLExceptionpublic void setRef(int i,
                   Ref r)
            throws SQLException
SQLExceptionpublic int findColumn(String s) throws SQLException
SQLExceptionpublic boolean wasNull()
public String getString(int i) throws SQLException
SQLExceptionpublic String getString(String s) throws SQLException
SQLExceptionpublic boolean getBoolean(int i)
                   throws SQLException
SQLExceptionpublic boolean getBoolean(String s) throws SQLException
SQLExceptionpublic long getLong(int i)
             throws SQLException
SQLExceptionpublic long getLong(String s) throws SQLException
SQLExceptionpublic int getInt(int i)
           throws SQLException
SQLExceptionpublic int getInt(String s) throws SQLException
SQLExceptionpublic short getShort(int i)
               throws SQLException
SQLExceptionpublic short getShort(String s) throws SQLException
SQLExceptionpublic byte getByte(int i)
             throws SQLException
SQLExceptionpublic byte getByte(String s) throws SQLException
SQLExceptionpublic double getDouble(int i)
                 throws SQLException
SQLExceptionpublic double getDouble(String s) throws SQLException
SQLExceptionpublic float getFloat(int i)
               throws SQLException
SQLExceptionpublic float getFloat(String s) throws SQLException
SQLExceptionpublic BigDecimal getBigDecimal(int i) throws SQLException
SQLExceptionpublic BigDecimal getBigDecimal(String s) throws SQLException
SQLExceptionpublic BigDecimal getBigDecimal(int i, int x) throws SQLException
SQLExceptionpublic BigDecimal getBigDecimal(String s, int n) throws SQLException
SQLExceptionpublic byte[] getBytes(int i)
                throws SQLException
SQLExceptionpublic byte[] getBytes(String s) throws SQLException
SQLExceptionpublic Object getObject(int i) throws SQLException
SQLExceptionpublic Object getObject(String s) throws SQLException
SQLExceptionpublic Date getDate(int i) throws SQLException
SQLExceptionpublic Date getDate(String s) throws SQLException
SQLExceptionpublic Time getTime(int i) throws SQLException
SQLExceptionpublic Time getTime(String s) throws SQLException
SQLExceptionpublic Timestamp getTimestamp(int i) throws SQLException
SQLExceptionpublic Timestamp getTimestamp(String s) throws SQLException
SQLExceptionpublic Date getDate(int i, Calendar c) throws SQLException
SQLExceptionpublic Date getDate(String s, Calendar c) throws SQLException
SQLExceptionpublic Time getTime(int i, Calendar c) throws SQLException
SQLExceptionpublic Time getTime(String s, Calendar c) throws SQLException
SQLExceptionpublic Timestamp getTimestamp(int i, Calendar c) throws SQLException
SQLExceptionpublic Timestamp getTimestamp(String s, Calendar c) throws SQLException
SQLExceptionpublic InputStream getBinaryStream(int i) throws SQLException
SQLExceptionpublic InputStream getBinaryStream(String s) throws SQLException
SQLExceptionpublic Reader getCharacterStream(int i) throws SQLException
SQLExceptionpublic Reader getCharacterStream(String s) throws SQLException
SQLExceptionpublic Blob getBlob(int i) throws SQLException
SQLExceptionpublic Blob getBlob(String s) throws SQLException
SQLExceptionpublic Clob getClob(int i) throws SQLException
SQLExceptionpublic Object getObject(int i, Map m) throws SQLException
SQLExceptionpublic Object getObject(String s, Map m) throws SQLException
SQLExceptionpublic InputStream getAsciiStream(int i) throws SQLException
SQLExceptionpublic InputStream getAsciiStream(String s) throws SQLException
SQLExceptionpublic InputStream getUnicodeStream(int i) throws SQLException
SQLExceptionpublic InputStream getUnicodeStream(String s) throws SQLException
SQLExceptionpublic Clob getClob(String s) throws SQLException
SQLExceptionpublic Array getArray(int i) throws SQLException
SQLExceptionpublic Array getArray(String s) throws SQLException
SQLExceptionpublic Ref getRef(int i) throws SQLException
SQLExceptionpublic Ref getRef(String s) throws SQLException
SQLExceptionpublic URL getURL(int i) throws SQLException
SQLExceptionpublic URL getURL(String s) throws SQLException
SQLExceptionpublic void updateNull(int i)
                throws SQLException
SQLExceptionpublic void updateNull(String s) throws SQLException
SQLExceptionpublic void updateObject(int i,
                         Object o)
                  throws SQLException
SQLExceptionpublic void updateObject(String s, Object o) throws SQLException
SQLExceptionpublic void updateObject(int i,
                         Object o,
                         int x)
                  throws SQLException
SQLExceptionpublic void updateObject(String s, Object o, int x) throws SQLException
SQLExceptionpublic void updateString(int i,
                         String s)
                  throws SQLException
SQLExceptionpublic void updateString(String s, String n) throws SQLException
SQLExceptionpublic void updateBoolean(int i,
                          boolean b)
                   throws SQLException
SQLExceptionpublic void updateBoolean(String s, boolean b) throws SQLException
SQLExceptionpublic void updateLong(int i,
                       long l)
                throws SQLException
SQLExceptionpublic void updateLong(String s, long l) throws SQLException
SQLExceptionpublic void updateInt(int i,
                      int x)
               throws SQLException
SQLExceptionpublic void updateInt(String s, int x) throws SQLException
SQLExceptionpublic void updateShort(int i,
                        short s)
                 throws SQLException
SQLExceptionpublic void updateShort(String s, short x) throws SQLException
SQLExceptionpublic void updateByte(int i,
                       byte b)
                throws SQLException
SQLExceptionpublic void updateByte(String s, byte b) throws SQLException
SQLExceptionpublic void updateDouble(int i,
                         double d)
                  throws SQLException
SQLExceptionpublic void updateDouble(String s, double d) throws SQLException
SQLExceptionpublic void updateFloat(int i,
                        float f)
                 throws SQLException
SQLExceptionpublic void updateFloat(String s, float f) throws SQLException
SQLExceptionpublic void updateBytes(int i,
                        byte[] b)
                 throws SQLException
SQLExceptionpublic void updateBytes(String s, byte[] b) throws SQLException
SQLExceptionpublic void updateBigDecimal(int i,
                             BigDecimal bd)
                      throws SQLException
SQLExceptionpublic void updateBigDecimal(String s, BigDecimal bd) throws SQLException
SQLExceptionpublic void updateDate(int i,
                       Date d)
                throws SQLException
SQLExceptionpublic void updateDate(String s, Date d) throws SQLException
SQLExceptionpublic void updateTime(int i,
                       Time t)
                throws SQLException
SQLExceptionpublic void updateTime(String s, Time t) throws SQLException
SQLExceptionpublic void updateTimestamp(int i,
                            Timestamp t)
                     throws SQLException
SQLExceptionpublic void updateTimestamp(String s, Timestamp t) throws SQLException
SQLExceptionpublic void updateAsciiStream(int i,
                              InputStream is,
                              int n)
                       throws SQLException
SQLExceptionpublic void updateAsciiStream(String s, InputStream is, int x) throws SQLException
SQLExceptionpublic void updateBinaryStream(int i,
                               InputStream is,
                               int n)
                        throws SQLException
SQLExceptionpublic void updateBinaryStream(String s, InputStream is, int x) throws SQLException
SQLExceptionpublic void updateCharacterStream(int i,
                                  Reader r,
                                  int n)
                           throws SQLException
SQLExceptionpublic void updateCharacterStream(String s, Reader r, int x) throws SQLException
SQLExceptionpublic void updateBlob(int a,
                       Blob b)
                throws SQLException
SQLExceptionpublic void updateBlob(String s, Blob b) throws SQLException
SQLExceptionpublic void updateClob(int a,
                       Clob b)
                throws SQLException
SQLExceptionpublic void updateClob(String s, Clob b) throws SQLException
SQLExceptionpublic void updateRef(int a,
                      Ref b)
               throws SQLException
SQLExceptionpublic void updateRef(String s, Ref b) throws SQLException
SQLExceptionpublic void updateArray(int a,
                        Array b)
                 throws SQLException
SQLExceptionpublic void updateArray(String s, Array b) throws SQLException
SQLExceptionpublic void addRowSetListener(RowSetListener rsl)
public void removeRowSetListener(RowSetListener rsl)
public SyncProvider getSyncProvider() throws SQLException
SQLExceptionpublic void setSyncProvider(String providerName) throws SQLException
SQLExceptionpublic int[] getMatchColumnIndexes()
                            throws SQLException
getMatchColumnIndexes in interface JoinableSQLExceptionpublic String[] getMatchColumnNames() throws SQLException
getMatchColumnNames in interface JoinableSQLExceptionpublic void setMatchColumn(int columnIdx)
                    throws SQLException
setMatchColumn in interface JoinableSQLExceptionpublic void setMatchColumn(String columnName) throws SQLException
setMatchColumn in interface JoinableSQLExceptionpublic void setMatchColumn(int[] columnIdxes)
                    throws SQLException
setMatchColumn in interface JoinableSQLExceptionpublic void setMatchColumn(String[] columnNames) throws SQLException
setMatchColumn in interface JoinableSQLExceptionpublic void unsetMatchColumn(int columnIdx)
                      throws SQLException
unsetMatchColumn in interface JoinableSQLExceptionpublic void unsetMatchColumn(String columnName) throws SQLException
unsetMatchColumn in interface JoinableSQLExceptionpublic void unsetMatchColumn(int[] columnIdxes)
                      throws SQLException
unsetMatchColumn in interface JoinableSQLExceptionpublic void unsetMatchColumn(String[] columnNames) throws SQLException
unsetMatchColumn in interface JoinableSQLExceptionpublic RowId getRowId(int columnIndex) throws SQLException
SQLExceptionpublic RowId getRowId(String columnName) throws SQLException
SQLExceptionpublic int getHoldability()
                   throws SQLException
SQLExceptionpublic boolean isClosed()
                 throws SQLException
SQLExceptionpublic NClob getNClob(int i) throws SQLException
SQLExceptionpublic NClob getNClob(String colName) throws SQLException
SQLExceptionpublic SQLXML getSQLXML(int columnIndex) throws SQLException
SQLExceptionpublic Reader getNCharacterStream(int columnIndex) throws SQLException
SQLExceptionpublic Reader getNCharacterStream(String colName) throws SQLException
SQLExceptionpublic String getNString(int columnIndex) throws SQLException
SQLExceptionpublic String getNString(String colName) throws SQLException
SQLExceptionpublic SQLXML getSQLXML(String colName) throws SQLException
SQLExceptionpublic void updateRowId(int columnIndex,
                        RowId x)
                 throws SQLException
SQLExceptionpublic void updateRowId(String columnName, RowId x) throws SQLException
SQLExceptionpublic void updateNString(int columnIndex,
                          String nString)
                   throws SQLException
SQLExceptionpublic void updateNString(String columnName, String nString) throws SQLException
SQLExceptionpublic void updateNClob(int columnIndex,
                        NClob nClob)
                 throws SQLException
SQLExceptionpublic void updateNClob(String columnName, NClob nClob) throws SQLException
SQLExceptionpublic void updateSQLXML(int columnIndex,
                         SQLXML o)
                  throws SQLException
SQLExceptionpublic void updateSQLXML(String columnName, SQLXML o) throws SQLException
SQLExceptionpublic void updateNCharacterStream(int i,
                                   Reader r,
                                   int n)
                            throws SQLException
SQLExceptionpublic void updateNCharacterStream(String s, Reader r, int n) throws SQLException
SQLExceptionpublic void setNClob(int i,
                     NClob c)
              throws SQLException
SQLExceptionpublic void setNCharacterStream(int i,
                                Reader r,
                                long x)
                         throws SQLException
SQLExceptionpublic void setNString(int i,
                       String s)
                throws SQLException
SQLExceptionpublic void setSQLXML(int i,
                      SQLXML sqlxml)
               throws SQLException
SQLExceptionpublic void setRowId(int i,
                     RowId rowid)
              throws SQLException
SQLExceptionpublic void setSQLXML(String parameterName, SQLXML xmlObject) throws SQLException
SQLExceptionpublic void setRowId(String parameterName, RowId x) throws SQLException
SQLExceptionpublic void setNString(String parameterName, String value) throws SQLException
SQLExceptionpublic void setNClob(String parameterName, NClob value) throws SQLException
SQLExceptionpublic void setNCharacterStream(String parameterName, Reader value, long length) throws SQLException
SQLExceptionpublic void updateAsciiStream(int columnIndex,
                              InputStream x)
                       throws SQLException
SQLExceptionpublic void updateAsciiStream(int columnIndex,
                              InputStream x,
                              long length)
                       throws SQLException
SQLExceptionpublic void updateAsciiStream(String columnLabel, InputStream x) throws SQLException
SQLExceptionpublic void updateAsciiStream(String columnLabel, InputStream x, long length) throws SQLException
SQLExceptionpublic void updateBinaryStream(int columnIndex,
                               InputStream x)
                        throws SQLException
SQLExceptionpublic void updateBinaryStream(int columnIndex,
                               InputStream x,
                               long length)
                        throws SQLException
SQLExceptionpublic void updateBinaryStream(String columnLabel, InputStream x) throws SQLException
SQLExceptionpublic void updateBinaryStream(String columnLabel, InputStream x, long length) throws SQLException
SQLExceptionpublic void updateBlob(int columnIndex,
                       InputStream inputStream)
                throws SQLException
SQLExceptionpublic void updateBlob(int columnIndex,
                       InputStream inputStream,
                       long length)
                throws SQLException
SQLExceptionpublic void updateBlob(String columnLabel, InputStream inputStream) throws SQLException
SQLExceptionpublic void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException
SQLExceptionpublic void updateCharacterStream(int columnIndex,
                                  Reader x)
                           throws SQLException
SQLExceptionpublic void updateCharacterStream(int columnIndex,
                                  Reader x,
                                  long length)
                           throws SQLException
SQLExceptionpublic void updateCharacterStream(String columnLabel, Reader x) throws SQLException
SQLExceptionpublic void updateCharacterStream(String columnLabel, Reader x, long length) throws SQLException
SQLExceptionpublic void updateClob(int columnIndex,
                       Reader reader)
                throws SQLException
SQLExceptionpublic void updateClob(int columnIndex,
                       Reader reader,
                       long length)
                throws SQLException
SQLExceptionpublic void updateClob(String columnLabel, Reader x) throws SQLException
SQLExceptionpublic void updateClob(String columnLabel, Reader x, long length) throws SQLException
SQLExceptionpublic void updateNCharacterStream(int columnIndex,
                                   Reader x)
                            throws SQLException
SQLExceptionpublic void updateNCharacterStream(int columnIndex,
                                   Reader x,
                                   long length)
                            throws SQLException
SQLExceptionpublic void updateNCharacterStream(String columnLabel, Reader reader) throws SQLException
SQLExceptionpublic void updateNCharacterStream(String columnLabel, Reader reader, long length) throws SQLException
SQLExceptionpublic void updateNClob(int columnIndex,
                        Reader reader)
                 throws SQLException
SQLExceptionpublic void updateNClob(int columnIndex,
                        Reader reader,
                        long length)
                 throws SQLException
SQLExceptionpublic void updateNClob(String columnLabel, Reader reader) throws SQLException
SQLExceptionpublic void updateNClob(String columnLabel, Reader reader, long length) throws SQLException
SQLExceptionpublic void setAsciiStream(int parameterIndex,
                           InputStream x)
                    throws SQLException
SQLExceptionpublic void setAsciiStream(String parameterName, InputStream x) throws SQLException
SQLExceptionpublic void setAsciiStream(String parameterName, InputStream x, int length) throws SQLException
SQLExceptionpublic void setBigDecimal(String parameterName, BigDecimal x) throws SQLException
SQLExceptionpublic void setBinaryStream(int parameterIndex,
                            InputStream x)
                     throws SQLException
SQLExceptionpublic void setBinaryStream(String parameterName, InputStream x) throws SQLException
SQLExceptionpublic void setBinaryStream(String parameterName, InputStream x, int length) throws SQLException
SQLExceptionpublic void setBlob(int parameterIndex,
                    InputStream inputStream)
             throws SQLException
SQLExceptionpublic void setBlob(int parameterIndex,
                    InputStream inputStream,
                    long length)
             throws SQLException
SQLExceptionpublic void setBlob(String parameterName, Blob x) throws SQLException
SQLExceptionpublic void setBlob(String parameterName, InputStream inputStream) throws SQLException
SQLExceptionpublic void setBlob(String parameterName, InputStream inputStream, long length) throws SQLException
SQLExceptionpublic void setBoolean(String parameterName, boolean x) throws SQLException
SQLExceptionpublic void setByte(String parameterName, byte x) throws SQLException
SQLExceptionpublic void setBytes(String parameterName, byte[] x) throws SQLException
SQLExceptionpublic void setCharacterStream(int parameterIndex,
                               Reader reader)
                        throws SQLException
SQLExceptionpublic void setCharacterStream(String parameterName, Reader reader) throws SQLException
SQLExceptionpublic void setCharacterStream(String parameterName, Reader reader, int length) throws SQLException
SQLExceptionpublic void setClob(int parameterIndex,
                    Reader reader)
             throws SQLException
SQLExceptionpublic void setClob(int parameterIndex,
                    Reader reader,
                    long length)
             throws SQLException
SQLExceptionpublic void setClob(String parameterName, Clob x) throws SQLException
SQLExceptionpublic void setClob(String parameterName, Reader reader) throws SQLException
SQLExceptionpublic void setClob(String parameterName, Reader reader, long length) throws SQLException
SQLExceptionpublic void setDate(String parameterName, Date x) throws SQLException
SQLExceptionpublic void setDate(String parameterName, Date x, Calendar cal) throws SQLException
SQLExceptionpublic void setDouble(String parameterName, double x) throws SQLException
SQLExceptionpublic void setFloat(String parameterName, float x) throws SQLException
SQLExceptionpublic void setInt(String parameterName, int x) throws SQLException
SQLExceptionpublic void setLong(String parameterName, long x) throws SQLException
SQLExceptionpublic void setNCharacterStream(int parameterIndex,
                                Reader value)
                         throws SQLException
SQLExceptionpublic void setNCharacterStream(String parameterName, Reader value) throws SQLException
SQLExceptionpublic void setNClob(int parameterIndex,
                     Reader reader)
              throws SQLException
SQLExceptionpublic void setNClob(int parameterIndex,
                     Reader reader,
                     long length)
              throws SQLException
SQLExceptionpublic void setNClob(String parameterName, Reader reader) throws SQLException
SQLExceptionpublic void setNClob(String parameterName, Reader reader, long length) throws SQLException
SQLExceptionpublic void setNull(String parameterName, int sqlType) throws SQLException
SQLExceptionpublic void setNull(String parameterName, int sqlType, String typeName) throws SQLException
SQLExceptionpublic void setObject(String parameterName, Object x) throws SQLException
SQLExceptionpublic void setObject(String parameterName, Object x, int targetSqlType) throws SQLException
SQLExceptionpublic void setObject(String parameterName, Object x, int targetSqlType, int scaleOrLength) throws SQLException
SQLExceptionpublic void setShort(String parameterName, short x) throws SQLException
SQLExceptionpublic void setString(String parameterName, String x) throws SQLException
SQLExceptionpublic void setTime(String parameterName, Time x) throws SQLException
SQLExceptionpublic void setTime(String parameterName, Time x, Calendar cal) throws SQLException
SQLExceptionpublic void setTimestamp(String parameterName, Timestamp x) throws SQLException
SQLExceptionpublic void setTimestamp(String parameterName, Timestamp x, Calendar cal) throws SQLException
SQLExceptionpublic void setURL(int parameterIndex,
                   URL x)
            throws SQLException
SQLException