absolute
public boolean absolute(int row)
throws SQLException
cancelRowUpdates
public void cancelRowUpdates()
throws SQLException
clearWarnings
public void clearWarnings()
throws SQLException
close
public void close()
throws SQLException
Wrapper for close of ResultSet which removes this
result set from being traced then calls close on
the original ResultSet.
equals
public boolean equals(Object obj)
findColumn
public int findColumn(java.lang.String columnName)
throws SQLException
getBoolean
public boolean getBoolean(int columnIndex)
throws SQLException
getBoolean
public boolean getBoolean(java.lang.String columnName)
throws SQLException
getByte
public byte getByte(int columnIndex)
throws SQLException
getByte
public byte getByte(java.lang.String columnName)
throws SQLException
getBytes
public byte[] getBytes(int columnIndex)
throws SQLException
getBytes
public byte[] getBytes(java.lang.String columnName)
throws SQLException
getCharacterStream
public Reader getCharacterStream(java.lang.String columnName)
throws SQLException
getConcurrency
public int getConcurrency()
throws SQLException
getDouble
public double getDouble(int columnIndex)
throws SQLException
getDouble
public double getDouble(java.lang.String columnName)
throws SQLException
getFetchDirection
public int getFetchDirection()
throws SQLException
getFloat
public float getFloat(int columnIndex)
throws SQLException
getFloat
public float getFloat(java.lang.String columnName)
throws SQLException
getInnermostDelegate
public ResultSet getInnermostDelegate()
If my underlying
ResultSet
is not a
DelegatingResultSet, returns it,
otherwise recursively invokes this method on
my delegate.
Hence this method will return the first
delegate that is not a
DelegatingResultSet,
or
null when no non-
DelegatingResultSet
delegate can be found by transversing this chain.
This method is useful when you may have nested
DelegatingResultSets, and you want to make
sure to obtain a "genuine"
ResultSet
.
getInt
public int getInt(int columnIndex)
throws SQLException
getInt
public int getInt(java.lang.String columnName)
throws SQLException
getLong
public long getLong(int columnIndex)
throws SQLException
getLong
public long getLong(java.lang.String columnName)
throws SQLException
getShort
public short getShort(int columnIndex)
throws SQLException
getShort
public short getShort(java.lang.String columnName)
throws SQLException
hashCode
public int hashCode()
isBeforeFirst
public boolean isBeforeFirst()
throws SQLException
moveToCurrentRow
public void moveToCurrentRow()
throws SQLException
moveToInsertRow
public void moveToInsertRow()
throws SQLException
relative
public boolean relative(int rows)
throws SQLException
setFetchDirection
public void setFetchDirection(int direction)
throws SQLException
setFetchSize
public void setFetchSize(int rows)
throws SQLException
updateArray
public void updateArray(java.lang.String columnName,
Array x)
throws SQLException
updateAsciiStream
public void updateAsciiStream(java.lang.String columnName,
InputStream x,
int length)
throws SQLException
updateBinaryStream
public void updateBinaryStream(java.lang.String columnName,
InputStream x,
int length)
throws SQLException
updateBlob
public void updateBlob(java.lang.String columnName,
Blob x)
throws SQLException
updateBoolean
public void updateBoolean(int columnIndex,
boolean x)
throws SQLException
updateBoolean
public void updateBoolean(java.lang.String columnName,
boolean x)
throws SQLException
updateByte
public void updateByte(int columnIndex,
byte x)
throws SQLException
updateByte
public void updateByte(java.lang.String columnName,
byte x)
throws SQLException
updateBytes
public void updateBytes(int columnIndex,
byte[] x)
throws SQLException
updateBytes
public void updateBytes(java.lang.String columnName,
byte[] x)
throws SQLException
updateCharacterStream
public void updateCharacterStream(int columnIndex,
Reader x,
int length)
throws SQLException
updateCharacterStream
public void updateCharacterStream(java.lang.String columnName,
Reader reader,
int length)
throws SQLException
updateClob
public void updateClob(java.lang.String columnName,
Clob x)
throws SQLException
updateDate
public void updateDate(java.lang.String columnName,
Date x)
throws SQLException
updateDouble
public void updateDouble(int columnIndex,
double x)
throws SQLException
updateDouble
public void updateDouble(java.lang.String columnName,
double x)
throws SQLException
updateFloat
public void updateFloat(int columnIndex,
float x)
throws SQLException
updateFloat
public void updateFloat(java.lang.String columnName,
float x)
throws SQLException
updateInt
public void updateInt(int columnIndex,
int x)
throws SQLException
updateInt
public void updateInt(java.lang.String columnName,
int x)
throws SQLException
updateLong
public void updateLong(int columnIndex,
long x)
throws SQLException
updateLong
public void updateLong(java.lang.String columnName,
long x)
throws SQLException
updateNull
public void updateNull(int columnIndex)
throws SQLException
updateNull
public void updateNull(java.lang.String columnName)
throws SQLException
updateObject
public void updateObject(int columnIndex,
Object x,
int scale)
throws SQLException
updateObject
public void updateObject(java.lang.String columnName,
Object x)
throws SQLException
updateObject
public void updateObject(java.lang.String columnName,
Object x,
int scale)
throws SQLException
updateRef
public void updateRef(java.lang.String columnName,
Ref x)
throws SQLException
updateShort
public void updateShort(int columnIndex,
short x)
throws SQLException
updateShort
public void updateShort(java.lang.String columnName,
short x)
throws SQLException
updateString
public void updateString(int columnIndex,
java.lang.String x)
throws SQLException
updateString
public void updateString(java.lang.String columnName,
java.lang.String x)
throws SQLException
updateTime
public void updateTime(java.lang.String columnName,
Time x)
throws SQLException