API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.sql. ResultSet View Source
Author(s)
Since
Version
Serial
Hierarchy
 Wrapper
      ResultSet
Subinterfaces
Description
public interface ResultSet
  A table of data representing a database result set, which is usually generated by executing a statement that queries the database.
Methods
Hide/Show inherited methods
public boolean absolute (int row) throws SQLException
  Moves the cursor to the given row number in this ResultSet object.
public void afterLast () throws SQLException
  Moves the cursor to the end of this ResultSet object, just after the last row.
public void beforeFirst () throws SQLException
  Moves the cursor to the front of this ResultSet object, just before the first row.
public void cancelRowUpdates () throws SQLException
  Cancels the updates made to the current row in this ResultSet object.
public void clearWarnings () throws SQLException
  Clears all warnings reported on this ResultSet object.
public void close () throws SQLException
  Releases this ResultSet object's database and JDBC resources immediately instead of waiting for this to happen when it is automatically closed.
public void deleteRow () throws SQLException
  Deletes the current row from this ResultSet object and from the underlying database.
public int findColumn (String columnLabel) throws SQLException
  Maps the given ResultSet column label to its ResultSet column index.
public boolean first () throws SQLException
  Moves the cursor to the first row in this ResultSet object.
public Array getArray (int columnIndex) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as an Array object in the Java programming language.
public Array getArray (String columnLabel) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as an Array object in the Java programming language.
public InputStream getAsciiStream (int columnIndex) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a stream of ASCII characters.
public InputStream getAsciiStream (String columnLabel) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a stream of ASCII characters.
public BigDecimal getBigDecimal (int columnIndex) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a java.math.BigDecimal with full precision.
public BigDecimal getBigDecimal (int columnIndex, int scale) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.BigDecimal in the Java programming language.
public BigDecimal getBigDecimal (String columnLabel) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a java.math.BigDecimal with full precision.
public BigDecimal getBigDecimal (String columnLabel, int scale) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a java.math.BigDecimal in the Java programming language.
public InputStream getBinaryStream (int columnIndex) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a stream of uninterpreted bytes.
public InputStream getBinaryStream (String columnLabel) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a stream of uninterpreted bytes.
public Blob getBlob (int columnIndex) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a Blob object in the Java programming language.
public Blob getBlob (String columnLabel) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a Blob object in the Java programming language.
public boolean getBoolean (int columnIndex) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a boolean in the Java programming language.
public boolean getBoolean (String columnLabel) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a boolean in the Java programming language.
public byte getByte (int columnIndex) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a byte in the Java programming language.
public byte getByte (String columnLabel) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a byte in the Java programming language.
public byte getBytes (int columnIndex) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a byte array in the Java programming language.
public byte getBytes (String columnLabel) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a byte array in the Java programming language.
public Reader getCharacterStream (int columnIndex) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a java.io.Reader object.
public Reader getCharacterStream (String columnLabel) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a java.io.Reader object.
public Clob getClob (int columnIndex) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a Clob object in the Java programming language.
public Clob getClob (String columnLabel) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a Clob object in the Java programming language.
public int getConcurrency () throws SQLException
  Retrieves the concurrency mode of this ResultSet object.
public String getCursorName () throws SQLException
  Retrieves the name of the SQL cursor used by this ResultSet object.
public Date getDate (int columnIndex) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Date object in the Java programming language.
public Date getDate (int columnIndex, Calendar cal) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Date object in the Java programming language.
public Date getDate (String columnLabel) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Date object in the Java programming language.
public Date getDate (String columnLabel, Calendar cal) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Date object in the Java programming language.
public double getDouble (int columnIndex) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a double in the Java programming language.
public double getDouble (String columnLabel) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a double in the Java programming language.
public int getFetchDirection () throws SQLException
  Retrieves the fetch direction for this ResultSet object.
public int getFetchSize () throws SQLException
  Retrieves the fetch size for this ResultSet object.
public float getFloat (int columnIndex) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a float in the Java programming language.
public float getFloat (String columnLabel) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a float in the Java programming language.
public int getHoldability () throws SQLException
  Retrieves the holdability of this ResultSet object
public int getInt (int columnIndex) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as an int in the Java programming language.
public int getInt (String columnLabel) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as an int in the Java programming language.
public long getLong (int columnIndex) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a long in the Java programming language.
public long getLong (String columnLabel) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a long in the Java programming language.
public ResultSetMetaData getMetaData () throws SQLException
  Retrieves the number, types and properties of this ResultSet object's columns.
public Reader getNCharacterStream (int columnIndex) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a java.io.Reader object.
public Reader getNCharacterStream (String columnLabel) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a java.io.Reader object.
public NClob getNClob (int columnIndex) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a NClob object in the Java programming language.
public NClob getNClob (String columnLabel) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a NClob object in the Java programming language.
public String getNString (int columnIndex) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a String in the Java programming language.
public String getNString (String columnLabel) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a String in the Java programming language.
public Object getObject (int columnIndex) throws SQLException
  Gets the value of the designated column in the current row of this ResultSet object as an Object in the Java programming language.
public Object getObject (int columnIndex, Map<String, Class<Object>> map) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as an Object in the Java programming language.
public Object getObject (String columnLabel) throws SQLException
  Gets the value of the designated column in the current row of this ResultSet object as an Object in the Java programming language.
public Object getObject (String columnLabel, Map<String, Class<Object>> map) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as an Object in the Java programming language.
public Ref getRef (int columnIndex) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a Ref object in the Java programming language.
public Ref getRef (String columnLabel) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a Ref object in the Java programming language.
public int getRow () throws SQLException
  Retrieves the current row number.
public RowId getRowId (int columnIndex) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.RowId object in the Java programming language.
public RowId getRowId (String columnLabel) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.RowId object in the Java programming language.
public short getShort (int columnIndex) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a short in the Java programming language.
public short getShort (String columnLabel) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a short in the Java programming language.
public SQLXML getSQLXML (int columnIndex) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet as a java.sql.SQLXML object in the Java programming language.
public SQLXML getSQLXML (String columnLabel) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet as a java.sql.SQLXML object in the Java programming language.
public Statement getStatement () throws SQLException
  Retrieves the Statement object that produced this ResultSet object.
public String getString (int columnIndex) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a String in the Java programming language.
public String getString (String columnLabel) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a String in the Java programming language.
public Time getTime (int columnIndex) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Time object in the Java programming language.
public Time getTime (int columnIndex, Calendar cal) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Time object in the Java programming language.
public Time getTime (String columnLabel) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Time object in the Java programming language.
public Time getTime (String columnLabel, Calendar cal) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Time object in the Java programming language.
public Timestamp getTimestamp (int columnIndex) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Timestamp object in the Java programming language.
public Timestamp getTimestamp (int columnIndex, Calendar cal) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Timestamp object in the Java programming language.
public Timestamp getTimestamp (String columnLabel) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Timestamp object in the Java programming language.
public Timestamp getTimestamp (String columnLabel, Calendar cal) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Timestamp object in the Java programming language.
public int getType () throws SQLException
  Retrieves the type of this ResultSet object.
public InputStream getUnicodeStream (int columnIndex) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as as a stream of two-byte 3 characters.
public InputStream getUnicodeStream (String columnLabel) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a stream of two-byte Unicode characters.
public URL getURL (int columnIndex) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a java.net.URL object in the Java programming language.
public URL getURL (String columnLabel) throws SQLException
  Retrieves the value of the designated column in the current row of this ResultSet object as a java.net.URL object in the Java programming language.
public SQLWarning getWarnings () throws SQLException
  Retrieves the first warning reported by calls on this ResultSet object.
public void insertRow () throws SQLException
  Inserts the contents of the insert row into this ResultSet object and into the database.
public boolean isAfterLast () throws SQLException
  Retrieves whether the cursor is after the last row in this ResultSet object.
public boolean isBeforeFirst () throws SQLException
  Retrieves whether the cursor is before the first row in this ResultSet object.
public boolean isClosed () throws SQLException
  Retrieves whether this ResultSet object has been closed.
public boolean isFirst () throws SQLException
  Retrieves whether the cursor is on the first row of this ResultSet object.
public boolean isLast () throws SQLException
  Retrieves whether the cursor is on the last row of this ResultSet object.
public boolean last () throws SQLException
  Moves the cursor to the last row in this ResultSet object.
public void moveToCurrentRow () throws SQLException
  Moves the cursor to the remembered cursor position, usually the current row.
public void moveToInsertRow () throws SQLException
  Moves the cursor to the insert row.
public boolean next () throws SQLException
  Moves the cursor froward one row from its current position.
public boolean previous () throws SQLException
  Moves the cursor to the previous row in this ResultSet object.
public void refreshRow () throws SQLException
  Refreshes the current row with its most recent value in the database.
public boolean relative (int rows) throws SQLException
  Moves the cursor a relative number of rows, either positive or negative.
public boolean rowDeleted () throws SQLException
  Retrieves whether a row has been deleted.
public boolean rowInserted () throws SQLException
  Retrieves whether the current row has had an insertion.
public boolean rowUpdated () throws SQLException
  Retrieves whether the current row has been updated.
public void setFetchDirection (int direction) throws SQLException
  Gives a hint as to the direction in which the rows in this ResultSet object will be processed.
public void setFetchSize (int rows) throws SQLException
  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 ResultSet object.
public void updateArray (int columnIndex, Array x) throws SQLException
  Updates the designated column with a java.sql.Array value.
public void updateArray (String columnLabel, Array x) throws SQLException
  Updates the designated column with a java.sql.Array value.
public void updateAsciiStream (int columnIndex, InputStream x) throws SQLException
  Updates the designated column with an ascii stream value.
public void updateAsciiStream (int columnIndex, InputStream x, int length) throws SQLException
  Updates the designated column with an ascii stream value, which will have the specified number of bytes.
public void updateAsciiStream (int columnIndex, InputStream x, long length) throws SQLException
  Updates the designated column with an ascii stream value, which will have the specified number of bytes.
public void updateAsciiStream (String columnLabel, InputStream x) throws SQLException
  Updates the designated column with an ascii stream value.
public void updateAsciiStream (String columnLabel, InputStream x, int length) throws SQLException
  Updates the designated column with an ascii stream value, which will have the specified number of bytes.
public void updateAsciiStream (String columnLabel, InputStream x, long length) throws SQLException
  Updates the designated column with an ascii stream value, which will have the specified number of bytes.
public void updateBigDecimal (int columnIndex, BigDecimal x) throws SQLException
  Updates the designated column with a java.math.BigDecimal value.
public void updateBigDecimal (String columnLabel, BigDecimal x) throws SQLException
  Updates the designated column with a java.sql.BigDecimal value.
public void updateBinaryStream (int columnIndex, InputStream x) throws SQLException
  Updates the designated column with a binary stream value.
public void updateBinaryStream (int columnIndex, InputStream x, int length) throws SQLException
  Updates the designated column with a binary stream value, which will have the specified number of bytes.
public void updateBinaryStream (int columnIndex, InputStream x, long length) throws SQLException
  Updates the designated column with a binary stream value, which will have the specified number of bytes.
public void updateBinaryStream (String columnLabel, InputStream x) throws SQLException
  Updates the designated column with a binary stream value.
public void updateBinaryStream (String columnLabel, InputStream x, int length) throws SQLException
  Updates the designated column with a binary stream value, which will have the specified number of bytes.
public void updateBinaryStream (String columnLabel, InputStream x, long length) throws SQLException
  Updates the designated column with a binary stream value, which will have the specified number of bytes.
public void updateBlob (int columnIndex, Blob x) throws SQLException
  Updates the designated column with a java.sql.Blob value.
public void updateBlob (int columnIndex, InputStream inputStream) throws SQLException
  Updates the designated column using the given input stream.
public void updateBlob (int columnIndex, InputStream inputStream, long length) throws SQLException
  Updates the designated column using the given input stream, which will have the specified number of bytes.
public void updateBlob (String columnLabel, Blob x) throws SQLException
  Updates the designated column with a java.sql.Blob value.
public void updateBlob (String columnLabel, InputStream inputStream) throws SQLException
  Updates the designated column using the given input stream.
public void updateBlob (String columnLabel, InputStream inputStream, long length) throws SQLException
  Updates the designated column using the given input stream, which will have the specified number of bytes.
public void updateBoolean (int columnIndex, boolean x) throws SQLException
  Updates the designated column with a boolean value.
public void updateBoolean (String columnLabel, boolean x) throws SQLException
  Updates the designated column with a boolean value.
public void updateByte (int columnIndex, byte x) throws SQLException
  Updates the designated column with a byte value.
public void updateByte (String columnLabel, byte x) throws SQLException
  Updates the designated column with a byte value.
public void updateBytes (int columnIndex, byte[] x) throws SQLException
  Updates the designated column with a byte array value.
public void updateBytes (String columnLabel, byte[] x) throws SQLException
  Updates the designated column with a byte array value.
public void updateCharacterStream (int columnIndex, Reader x) throws SQLException
  Updates the designated column with a character stream value.
public void updateCharacterStream (int columnIndex, Reader x, int length) throws SQLException
  Updates the designated column with a character stream value, which will have the specified number of bytes.
public void updateCharacterStream (int columnIndex, Reader x, long length) throws SQLException
  Updates the designated column with a character stream value, which will have the specified number of bytes.
public void updateCharacterStream (String columnLabel, Reader reader) throws SQLException
  Updates the designated column with a character stream value.
public void updateCharacterStream (String columnLabel, Reader reader, int length) throws SQLException
  Updates the designated column with a character stream value, which will have the specified number of bytes.
public void updateCharacterStream (String columnLabel, Reader reader, long length) throws SQLException
  Updates the designated column with a character stream value, which will have the specified number of bytes.
public void updateClob (int columnIndex, Clob x) throws SQLException
  Updates the designated column with a java.sql.Clob value.
public void updateClob (int columnIndex, Reader reader) throws SQLException
  Updates the designated column using the given Reader object.
public void updateClob (int columnIndex, Reader reader, long length) throws SQLException
  Updates the designated column using the given Reader object, which is the given number of characters long.
public void updateClob (String columnLabel, Clob x) throws SQLException
  Updates the designated column with a java.sql.Clob value.
public void updateClob (String columnLabel, Reader reader) throws SQLException
  Updates the designated column using the given Reader object.
public void updateClob (String columnLabel, Reader reader, long length) throws SQLException
  Updates the designated column using the given Reader object, which is the given number of characters long.
public void updateDate (int columnIndex, Date x) throws SQLException
  Updates the designated column with a java.sql.Date value.
public void updateDate (String columnLabel, Date x) throws SQLException
  Updates the designated column with a java.sql.Date value.
public void updateDouble (int columnIndex, double x) throws SQLException
  Updates the designated column with a double value.
public void updateDouble (String columnLabel, double x) throws SQLException
  Updates the designated column with a double value.
public void updateFloat (int columnIndex, float x) throws SQLException
  Updates the designated column with a float value.
public void updateFloat (String columnLabel, float x) throws SQLException
  Updates the designated column with a float value.
public void updateInt (int columnIndex, int x) throws SQLException
  Updates the designated column with an int value.
public void updateInt (String columnLabel, int x) throws SQLException
  Updates the designated column with an int value.
public void updateLong (int columnIndex, long x) throws SQLException
  Updates the designated column with a long value.
public void updateLong (String columnLabel, long x) throws SQLException
  Updates the designated column with a long value.
public void updateNCharacterStream (int columnIndex, Reader x) throws SQLException
  Updates the designated column with a character stream value.
public void updateNCharacterStream (int columnIndex, Reader x, long length) throws SQLException
  Updates the designated column with a character stream value, which will have the specified number of bytes.
public void updateNCharacterStream (String columnLabel, Reader reader) throws SQLException
  Updates the designated column with a character stream value.
public void updateNCharacterStream (String columnLabel, Reader reader, long length) throws SQLException
  Updates the designated column with a character stream value, which will have the specified number of bytes.
public void updateNClob (int columnIndex, NClob nClob) throws SQLException
  Updates the designated column with a java.sql.NClob value.
public void updateNClob (int columnIndex, Reader reader) throws SQLException
  Updates the designated column using the given Reader The data will be read from the stream as needed until end-of-stream is reached.
public void updateNClob (int columnIndex, Reader reader, long length) throws SQLException
  Updates the designated column using the given Reader object, which is the given number of characters long.
public void updateNClob (String columnLabel, NClob nClob) throws SQLException
  Updates the designated column with a java.sql.NClob value.
public void updateNClob (String columnLabel, Reader reader) throws SQLException
  Updates the designated column using the given Reader object.
public void updateNClob (String columnLabel, Reader reader, long length) throws SQLException
  Updates the designated column using the given Reader object, which is the given number of characters long.
public void updateNString (int columnIndex, String nString) throws SQLException
  Updates the designated column with a String value.
public void updateNString (String columnLabel, String nString) throws SQLException
  Updates the designated column with a String value.
public void updateNull (int columnIndex) throws SQLException
  Updates the designated column with a null value.
public void updateNull (String columnLabel) throws SQLException
  Updates the designated column with a null value.
public void updateObject (int columnIndex, Object x) throws SQLException
  Updates the designated column with an Object value.
public void updateObject (int columnIndex, Object x, int scaleOrLength) throws SQLException
  Updates the designated column with an Object value.
public void updateObject (String columnLabel, Object x) throws SQLException
  Updates the designated column with an Object value.
public void updateObject (String columnLabel, Object x, int scaleOrLength) throws SQLException
  Updates the designated column with an Object value.
public void updateRef (int columnIndex, Ref x) throws SQLException
  Updates the designated column with a java.sql.Ref value.
public void updateRef (String columnLabel, Ref x) throws SQLException
  Updates the designated column with a java.sql.Ref value.
public void updateRow () throws SQLException
  Updates the underlying database with the new contents of the current row of this ResultSet object.
public void updateRowId (int columnIndex, RowId x) throws SQLException
  Updates the designated column with a RowId value.
public void updateRowId (String columnLabel, RowId x) throws SQLException
  Updates the designated column with a RowId value.
public void updateShort (int columnIndex, short x) throws SQLException
  Updates the designated column with a short value.
public void updateShort (String columnLabel, short x) throws SQLException
  Updates the designated column with a short value.
public void updateSQLXML (int columnIndex, SQLXML xmlObject) throws SQLException
  Updates the designated column with a java.sql.SQLXML value.
public void updateSQLXML (String columnLabel, SQLXML xmlObject) throws SQLException
  Updates the designated column with a java.sql.SQLXML value.
public void updateString (int columnIndex, String x) throws SQLException
  Updates the designated column with a String value.
public void updateString (String columnLabel, String x) throws SQLException
  Updates the designated column with a String value.
public void updateTime (int columnIndex, Time x) throws SQLException
  Updates the designated column with a java.sql.Time value.
public void updateTime (String columnLabel, Time x) throws SQLException
  Updates the designated column with a java.sql.Time value.
public void updateTimestamp (int columnIndex, Timestamp x) throws SQLException
  Updates the designated column with a java.sql.Timestamp value.
public void updateTimestamp (String columnLabel, Timestamp x) throws SQLException
  Updates the designated column with a java.sql.Timestamp value.
public boolean wasNull () throws SQLException
  Reports whether the last column read had a value of SQL NULL.
Fields
Hide/Show inherited fields
publicfinalstatic int CLOSE_CURSORS_AT_COMMIT = "2"
  The constant indicating that open ResultSet objects with this holdability will be closed when the current transaction is commited.
publicfinalstatic int CONCUR_READ_ONLY = "1007"
  The constant indicating the concurrency mode for a ResultSet object that may NOT be updated.
publicfinalstatic int CONCUR_UPDATABLE = "1008"
  The constant indicating the concurrency mode for a ResultSet object that may be updated.
publicfinalstatic int FETCH_FORWARD = "1000"
  The constant indicating that the rows in a result set will be processed in a forward direction; first-to-last.
publicfinalstatic int FETCH_REVERSE = "1001"
  The constant indicating that the rows in a result set will be processed in a reverse direction; last-to-first.
publicfinalstatic int FETCH_UNKNOWN = "1002"
  The constant indicating that the order in which rows in a result set will be processed is unknown.
publicfinalstatic int HOLD_CURSORS_OVER_COMMIT = "1"
  The constant indicating that open ResultSet objects with this holdability will remain open when the current transaction is commited.
publicfinalstatic int TYPE_FORWARD_ONLY = "1003"
  The constant indicating the type for a ResultSet object whose cursor may move only forward.
publicfinalstatic int TYPE_SCROLL_INSENSITIVE = "1004"
  The constant indicating the type for a ResultSet object that is scrollable but generally not sensitive to changes to the data that underlies the ResultSet.
publicfinalstatic int TYPE_SCROLL_SENSITIVE = "1005"
  The constant indicating the type for a ResultSet object that is scrollable and generally sensitive to changes to the data that underlies the ResultSet.
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar