Method Summary |
|
public void | cancelRowUpdates() |
public void | clearWarnings() Clear the warnings. |
public void | deleteRow() Delete a row. |
public Array | getArray(int i) |
public Array | getArray(String colName) |
public InputStream | getAsciiStream(int columnIndex) 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 columnName) |
public BigDecimal | getBigDecimal(int columnIndex, int scale) 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 columnName, int scale) 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 BigDecimal | getBigDecimal(int columnIndex) |
public BigDecimal | getBigDecimal(String columnName) |
public InputStream | getBinaryStream(int columnIndex) Retrieves the value of the designated column in the current row
of this ResultSet object as a binary stream of uninterpreted bytes. |
public InputStream | getBinaryStream(String columnName) |
public Blob | getBlob(int i) |
public Blob | getBlob(String colName) |
public boolean | getBoolean(int columnIndex) 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 columnName) 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) 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 columnName) 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) 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 columnName) |
public Reader | getCharacterStream(int columnIndex) |
public Reader | getCharacterStream(String columnName) |
public Clob | getClob(int i) |
public Clob | getClob(String colName) |
public int | getConcurrency() |
public String | getCursorName() Get the cursor name. |
public java.sql.Date | getDate(int columnIndex) 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 java.sql.Date | getDate(String columnName) |
public java.sql.Date | getDate(int columnIndex, Calendar cal) |
public java.sql.Date | getDate(String columnName, Calendar cal) |
public double | getDouble(int columnIndex) 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 columnName) 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() Get the fetch direction. |
public int | getFetchSize() Get the fetch size - currently always returns 1. |
public float | getFloat(int columnIndex) 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 columnName) 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 | getInt(int columnIndex) 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 columnName) 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) 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 columnName) Retrieves the value of the designated column in the current row
of this ResultSet object as a long in the Java programming language. |
public Object | getObject(int i, Map map) Get an object from the current result. |
public Object | getObject(String colName, Map map) Get an object from the current result. |
public Ref | getRef(int i) |
public Ref | getRef(String colName) |
public short | getShort(int columnIndex) 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 columnName) Retrieves the value of the designated column in the current row
of this ResultSet object as a short in the Java programming language. |
public String | getString(int columnIndex) 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 columnName) 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) 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 columnName) |
public Time | getTime(int columnIndex, Calendar cal) |
public Time | getTime(String columnName, Calendar cal) |
public Timestamp | getTimestamp(int columnIndex) 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 columnName) |
public Timestamp | getTimestamp(int columnIndex, Calendar cal) |
public Timestamp | getTimestamp(String columnName, Calendar cal) |
public int | getType() |
public URL | getURL(int columnIndex) |
public URL | getURL(String columnName) |
public InputStream | getUnicodeStream(int columnIndex) Retrieves the value of the designated column in the current row
of this ResultSet object as as a stream of two-byte Unicode characters. |
public InputStream | getUnicodeStream(String columnName) |
public SQLWarning | getWarnings() Get the warnings. |
public void | insertRow() Insert a row. |
public void | moveToCurrentRow() |
public void | moveToInsertRow() |
public void | refreshRow() Refresh a row. |
public boolean | rowDeleted() |
public boolean | rowInserted() |
public boolean | rowUpdated() |
public void | setFetchDirection(int direction) |
public void | setFetchSize(int rows) |
public void | updateArray(int columnIndex, Array x) |
public void | updateArray(String columnName, Array x) |
public void | updateAsciiStream(int columnIndex, InputStream x, int length) |
public void | updateAsciiStream(String columnName, InputStream x, int length) Updates a column. |
public void | updateBigDecimal(int columnIndex, BigDecimal x) |
public void | updateBigDecimal(String columnName, BigDecimal x) Updates a column. |
public void | updateBinaryStream(int columnIndex, InputStream x, int length) |
public void | updateBinaryStream(String columnName, InputStream x, int length) Updates a column. |
public void | updateBlob(int columnIndex, Blob x) |
public void | updateBlob(String columnName, Blob x) |
public void | updateBoolean(int columnIndex, boolean x) |
public void | updateBoolean(String columnName, boolean x) |
public void | updateByte(int columnIndex, byte x) |
public void | updateByte(String columnName, byte x) |
public void | updateBytes(int columnIndex, byte[] x) |
public void | updateBytes(String columnName, byte[] x) Updates a column. |
public void | updateCharacterStream(int columnIndex, Reader x, int length) |
public void | updateCharacterStream(String columnName, Reader reader, int length) Updates a column. |
public void | updateClob(int columnIndex, Clob x) |
public void | updateClob(String columnName, Clob x) |
public void | updateDate(int columnIndex, java.sql.Date x) |
public void | updateDate(String columnName, java.sql.Date x) Updates a column. |
public void | updateDouble(int columnIndex, double x) |
public void | updateDouble(String columnName, double x) Updates a column. |
public void | updateFloat(int columnIndex, float x) |
public void | updateFloat(String columnName, float x) Updates a column. |
public void | updateInt(int columnIndex, int x) |
public void | updateInt(String columnName, int x) Updates a column. |
public void | updateLong(int columnIndex, long x) |
public void | updateLong(String columnName, long x) Updates a column. |
public void | updateNull(int columnIndex) |
public void | updateNull(String columnName) |
public void | updateObject(int columnIndex, Object x, int scale) |
public void | updateObject(int columnIndex, Object x) |
public void | updateObject(String columnName, Object x, int scale) Updates a column. |
public void | updateObject(String columnName, Object x) Updates a column. |
public void | updateRef(int columnIndex, Ref x) |
public void | updateRef(String columnName, Ref x) |
public void | updateRow() Update a row. |
public void | updateShort(int columnIndex, short x) |
public void | updateShort(String columnName, short x) Updates a column. |
public void | updateString(int columnIndex, String x) |
public void | updateString(String columnName, String x) Updates a column. |
public void | updateTime(int columnIndex, Time x) |
public void | updateTime(String columnName, Time x) Updates a column. |
public void | updateTimestamp(int columnIndex, Timestamp x) |
public void | updateTimestamp(String columnName, Timestamp x) Updates a column. |
public boolean | wasNull() Reports whether the last column read had a value of SQL NULL. |