Method Summary
|
| wasNull |
reports whether the last column read had a value of SQL NULL.
Note that you must first call getXXX on a column to try to read
its value and then call
wasNull()
to see if the value read was SQL NULL.
|
|
| getString |
gets the value of a column in the current row as a String.
|
|
| getBoolean |
gets the value of a column in the current row as boolean.
|
|
| getByte |
gets the value of a column in the current row as a byte.
|
|
| getShort |
gets the value of a column in the current row as a short.
|
|
| getInt |
gets the value of a column in the current row as a long.
|
|
| getLong |
gets the value of a column in the current row as a hyper.
|
|
| getFloat |
gets the value of a column in the current row as a float.
|
|
| getDouble |
gets the value of a column in the current row as a double.
|
|
| getBytes |
gets the value of a column in the current row as a byte array.
The bytes represent the raw values returned by the driver.
|
|
| getDate |
gets the value of a column in the current row as a date object.
|
|
| getTime |
gets the value of a column in the current row as a time object.
|
|
| getTimestamp |
gets the value of a column in the current row as a datetime object.
|
|
| getBinaryStream |
gets the value of a column in the current row as a stream of
uninterpreted bytes. The value can then be read in chunks from the
stream. This method is particularly suitable for retrieving large
LONGVARBINARY or LONGVARCHAR values.
|
|
| getCharacterStream |
gets the value of a column in the current row as a stream of
uninterpreted bytes. The value can then be read in chunks from the
stream. This method is particularly suitable for retrieving large
LONGVARCHAR values.
|
|
| getObject |
|
|
| getRef |
gets a REF(<structured-type>) column value from the current row.
|
|
| getBlob |
gets a BLOB (Binary Large OBject) value in the current row.
|
|
| getClob |
gets a CLOB value in the current row of this ResultSet object.
|
|
| getArray |
gets a SQL ARRAY value from the current row.
|
|
Copyright 2002 Sun Microsystems, Inc., 901 San Antonio Road, Palo Alto, CA 94303 USA.