Method Summary |
|
public InputStream | getNullAsciiStream() Returns the value when a SQL null is encountered as the result of
invoking a getAsciiStream method. |
public BigDecimal | getNullBigDecimal() Returns the value when a SQL null is encountered as the result of
invoking a getBigDecimal method. |
public InputStream | getNullBinaryStream() Returns the value when a SQL null is encountered as the result of
invoking a getBinaryStream method. |
public Blob | getNullBlob() Returns the value when a SQL null is encountered as the result of
invoking a getBlob method. |
public boolean | getNullBoolean() Returns the value when a SQL null is encountered as the result of
invoking a getBoolean method. |
public byte | getNullByte() Returns the value when a SQL null is encountered as the result of
invoking a getByte method. |
public byte[] | getNullBytes() Returns the value when a SQL null is encountered as the result of
invoking a getBytes method. |
public Reader | getNullCharacterStream() Returns the value when a SQL null is encountered as the result of
invoking a getCharacterStream method. |
public Clob | getNullClob() Returns the value when a SQL null is encountered as the result of
invoking a getClob method. |
public Date | getNullDate() Returns the value when a SQL null is encountered as the result of
invoking a getDate method. |
public double | getNullDouble() Returns the value when a SQL null is encountered as the result of
invoking a getDouble method. |
public float | getNullFloat() Returns the value when a SQL null is encountered as the result of
invoking a getFloat method. |
public int | getNullInt() Returns the value when a SQL null is encountered as the result of
invoking a getInt method. |
public long | getNullLong() Returns the value when a SQL null is encountered as the result of
invoking a getLong method. |
public Object | getNullObject() Returns the value when a SQL null is encountered as the result of
invoking a getObject method. |
public Ref | getNullRef() Returns the value when a SQL null is encountered as the result of
invoking a getRef method. |
public short | getNullShort() Returns the value when a SQL null is encountered as the result of
invoking a getShort method. |
public String | getNullString() Returns the value when a SQL null is encountered as the result of
invoking a getString method. |
public Time | getNullTime() Returns the value when a SQL null is encountered as the result of
invoking a getTime method. |
public Timestamp | getNullTimestamp() Returns the value when a SQL null is encountered as the result of
invoking a getTimestamp method. |
public URL | getNullURL() Returns the value when a SQL null is encountered as the result of
invoking a getURL method. |
public Object | invoke(Object proxy, Method method, Object[] args) Intercepts calls to get* methods and calls the appropriate
getNull* method if the ResultSet returned
null . |
public void | setNullAsciiStream(InputStream nullAsciiStream) Sets the value to return when a SQL null is encountered as the result of
invoking a getAsciiStream method. |
public void | setNullBigDecimal(BigDecimal nullBigDecimal) Sets the value to return when a SQL null is encountered as the result of
invoking a getBigDecimal method. |
public void | setNullBinaryStream(InputStream nullBinaryStream) Sets the value to return when a SQL null is encountered as the result of
invoking a getBinaryStream method. |
public void | setNullBlob(Blob nullBlob) Sets the value to return when a SQL null is encountered as the result of
invoking a getBlob method. |
public void | setNullBoolean(boolean nullBoolean) Sets the value to return when a SQL null is encountered as the result of
invoking a getBoolean method. |
public void | setNullByte(byte nullByte) Sets the value to return when a SQL null is encountered as the result of
invoking a getByte method. |
public void | setNullBytes(byte[] nullBytes) Sets the value to return when a SQL null is encountered as the result of
invoking a getBytes method. |
public void | setNullCharacterStream(Reader nullCharacterStream) Sets the value to return when a SQL null is encountered as the result of
invoking a getCharacterStream method. |
public void | setNullClob(Clob nullClob) Sets the value to return when a SQL null is encountered as the result of
invoking a getClob method. |
public void | setNullDate(Date nullDate) Sets the value to return when a SQL null is encountered as the result of
invoking a getDate method. |
public void | setNullDouble(double nullDouble) Sets the value to return when a SQL null is encountered as the result of
invoking a getDouble method. |
public void | setNullFloat(float nullFloat) Sets the value to return when a SQL null is encountered as the result of
invoking a getFloat method. |
public void | setNullInt(int nullInt) Sets the value to return when a SQL null is encountered as the result of
invoking a getInt method. |
public void | setNullLong(long nullLong) Sets the value to return when a SQL null is encountered as the result of
invoking a getLong method. |
public void | setNullObject(Object nullObject) Sets the value to return when a SQL null is encountered as the result of
invoking a getObject method. |
public void | setNullRef(Ref nullRef) Sets the value to return when a SQL null is encountered as the result of
invoking a getRef method. |
public void | setNullShort(short nullShort) Sets the value to return when a SQL null is encountered as the result of
invoking a getShort method. |
public void | setNullString(String nullString) Sets the value to return when a SQL null is encountered as the result of
invoking a getString method. |
public void | setNullTime(Time nullTime) Sets the value to return when a SQL null is encountered as the result of
invoking a getTime method. |
public void | setNullTimestamp(Timestamp nullTimestamp) Sets the value to return when a SQL null is encountered as the result of
invoking a getTimestamp method. |
public void | setNullURL(URL nullURL) Sets the value to return when a SQL null is encountered as the result of
invoking a getURL method. |
public static ResultSet | wrap(ResultSet rs) Wraps the ResultSet in an instance of this class. |