clearWarnings
public void clearWarnings()
throws SQLException
This is a noop since warnings are not supported.
getArray
public Array getArray(int columnIndex)
throws SQLException
getAsciiStream
public InputStream getAsciiStream(int columnIndex)
throws SQLException
getBigDecimal
public BigDecimal getBigDecimal(int columnIndex)
throws SQLException
getBigDecimal
public BigDecimal getBigDecimal(int columnIndex,
int scale)
throws SQLException
getBinaryStream
public InputStream getBinaryStream(int columnIndex)
throws SQLException
getBlob
public Blob getBlob(int columnIndex)
throws SQLException
getBoolean
public boolean getBoolean(int columnIndex)
throws SQLException
getByte
public byte getByte(int columnIndex)
throws SQLException
getBytes
public byte[] getBytes(int columnIndex)
throws SQLException
getCharacterStream
public Reader getCharacterStream(int columnIndex)
throws SQLException
getClob
public Clob getClob(int columnIndex)
throws SQLException
getDate
public Date getDate(int columnIndex)
throws SQLException
getDate
public Date getDate(int columnIndex,
Calendar cal)
throws SQLException
getDouble
public double getDouble(int columnIndex)
throws SQLException
getFloat
public float getFloat(int columnIndex)
throws SQLException
getInt
public int getInt(int columnIndex)
throws SQLException
getLong
public long getLong(int columnIndex)
throws SQLException
getMetaData
public ResultSetMetaData getMetaData()
throws SQLException
ResultSetMetaData is not yet supported.
getNumber
protected final Number getNumber(int columnIndex,
Class cls)
throws SQLException
getObject
public final Object getObject(int columnIndex)
throws SQLException
getObject
public final Object getObject(int columnIndex,
Map map)
throws SQLException
getObjectValue
protected abstract Object getObjectValue(int columnIndex)
throws SQLException
getObjectValue
protected Object getObjectValue(int columnIndex,
Map typeMap)
throws SQLException
getRef
public Ref getRef(int columnIndex)
throws SQLException
getShort
public short getShort(int columnIndex)
throws SQLException
getString
public String getString(int columnIndex)
throws SQLException
getTime
public Time getTime(int columnIndex)
throws SQLException
getTime
public Time getTime(int columnIndex,
Calendar cal)
throws SQLException
getTimestamp
public Timestamp getTimestamp(int columnIndex)
throws SQLException
getTimestamp
public Timestamp getTimestamp(int columnIndex,
Calendar cal)
throws SQLException
getURL
public URL getURL(int columnIndex)
throws SQLException
getUnicodeStream
public InputStream getUnicodeStream(int columnIndex)
throws SQLException
getValue
protected final Object getValue(int columnIndex,
Class cls)
throws SQLException
getValue
protected Object getValue(int columnIndex,
Class cls,
Calendar cal)
throws SQLException
getWarnings
public SQLWarning getWarnings()
throws SQLException
refreshRow
public void refreshRow()
throws SQLException
Refresh row is not yet implemented.
updateArray
public void updateArray(int columnIndex,
Array x)
throws SQLException
updateAsciiStream
public void updateAsciiStream(int columnIndex,
InputStream x,
int length)
throws SQLException
updateBigDecimal
public void updateBigDecimal(int columnIndex,
BigDecimal x)
throws SQLException
updateBinaryStream
public void updateBinaryStream(int columnIndex,
InputStream x,
int length)
throws SQLException
updateBlob
public void updateBlob(int columnIndex,
Blob x)
throws SQLException
updateBoolean
public void updateBoolean(int columnIndex,
boolean x)
throws SQLException
updateByte
public void updateByte(int columnIndex,
byte x)
throws SQLException
updateBytes
public void updateBytes(int columnIndex,
byte[] x)
throws SQLException
updateCharacterStream
public void updateCharacterStream(int columnIndex,
Reader x,
int length)
throws SQLException
updateClob
public void updateClob(int columnIndex,
Clob x)
throws SQLException
updateDate
public void updateDate(int columnIndex,
Date x)
throws SQLException
updateDouble
public void updateDouble(int columnIndex,
double x)
throws SQLException
updateFloat
public void updateFloat(int columnIndex,
float x)
throws SQLException
updateInt
public void updateInt(int columnIndex,
int x)
throws SQLException
updateLong
public void updateLong(int columnIndex,
long x)
throws SQLException
updateNull
public void updateNull(int columnIndex)
throws SQLException
updateRef
public void updateRef(int columnIndex,
Ref x)
throws SQLException
updateShort
public void updateShort(int columnIndex,
short x)
throws SQLException
updateString
public void updateString(int columnIndex,
String x)
throws SQLException
updateTime
public void updateTime(int columnIndex,
Time x)
throws SQLException
updateTimestamp
public void updateTimestamp(int columnIndex,
Timestamp x)
throws SQLException
wasNull
public boolean wasNull()