Method Summary |
|
public Array | readArray() Returns the next attribute in the stream in the form of a java.sql.Array.
the next attribute as an Array. |
public InputStream | readAsciiStream() Returns the next attribute in the stream in the form of an ASCII
character stream embodied as a java.io.InputStream.
the next attribute as a java.io.InputStream. |
public BigDecimal | readBigDecimal() Returns the next attribute in the stream in the form of a
java.math.BigDecimal.
the attribute as a java.math.BigDecimal. |
public InputStream | readBinaryStream() Returns the next attribute in the stream in the form of a stream of bytes
embodied as a java.io.InputStream.
the next attribute as a java.io.InputStream. |
public Blob | readBlob() Returns the next attribute in the stream in the form of a java.sql.Blob.
the next attribute as a java.sql.Blob. |
public boolean | readBoolean() Returns the next attribute in the stream in the form of a boolean.
the next attribute as a boolean. |
public byte | readByte() Returns the next attribute in the stream in the form of a byte.
the next attribute as a byte. |
public byte[] | readBytes() Returns the next attribute in the stream in the form of a byte array.
the attribute as a byte array. |
public Reader | readCharacterStream() Returns the next attribute in the stream in the form of a Unicode
character stream embodied as a java.io.Reader.
the next attribute as a java.io.Reader. |
public Clob | readClob() Returns the next attribute in the stream in the form of a java.sql.Clob.
the next attribute as a java.sql.Clob. |
public Date | readDate() Returns the next attribute in the stream in the form of a java.sql.Date.
the next attribute as a java.sql.Date. |
public double | readDouble() Returns the next attribute in the stream in the form of a double.
the next attribute as a double. |
public float | readFloat() Returns the next attribute in the stream in the form of a float.
the next attribute as a float. |
public int | readInt() Returns the next attribute in the stream in the form of an int.
the next attribute as an int. |
public long | readLong() Returns the next attribute in the stream in the form of a long.
the next attribute as a long. |
public Object | readObject() Returns the next attribute in the stream in the form of a
java.lang.Object.
The type of the Object returned is determined by the type mapping for
this JDBC driver, including any customized mappings in force. |
public Ref | readRef() Returns the next attribute in the stream in the form of a java.sql.Ref.
the next attribute as a java.sql.Ref. |
public short | readShort() Returns the next attribute in the stream in the form of a short.
the next attribute as a short. |
public String | readString() Returns the next attribute in the stream in the form of a String.
the next attribute as a String. |
public Time | readTime() Returns the next attribute in the stream in the form of a java.sql.Time.
the attribute as a java.sql.Time. |
public Timestamp | readTimestamp() Returns the next attribute in the stream in the form of a
java.sql.Timestamp.
the attribute as a java.sql.Timestamp. |
public URL | readURL() Reads the next attribute in the stream (SQL DATALINK value) and returns
it as a java.net.URL object.
the next attribute as a java.net.URL. |
public boolean | wasNull() Reports whether the last value read was SQL NULL. |