|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--com.codestudio.sql.PoolManResultSet
This JDBC 2.0 ResultSet implementation transforms underlying ResultSets so they can support more advanced JDBC 2.0 features (scrolling, updates, etc.).
It is implemented as an ArrayList representing the rows in a ResultSet. Each element in this ArrayList is a "row" that is in turn represented as an ArrayList of com.codestudio.sql.Result objects.
A cursor, implemented as a simple int index, indicates the current row by indicating the index of the element in the top-level ArrayList of rows.
Yet another ArrayList represents a virtual row, one that is
based on the current row but is being updated. This structure
is used to permanently alter the original row when
updateRow()
is invoked. If that method is never invoked,
then the changes are discarded via the clearUpdates() method,
which is invoked whenever the cursor moves.
Fields inherited from interface java.sql.ResultSet |
CONCUR_READ_ONLY, CONCUR_UPDATABLE, FETCH_FORWARD, FETCH_REVERSE, FETCH_UNKNOWN, TYPE_FORWARD_ONLY, TYPE_SCROLL_INSENSITIVE, TYPE_SCROLL_SENSITIVE |
Constructor Summary | |
PoolManResultSet()
|
|
PoolManResultSet(java.sql.Statement s,
java.util.ArrayList rowlist,
java.sql.ResultSetMetaData meta,
int rScrollableType,
int rConcurType)
|
Method Summary | |
boolean |
absolute(int row)
Move the cursor to a specific row number. |
void |
afterLast()
Move the cursor one step beyond the final row. |
void |
beforeFirst()
Move the cursor one step before the first row. |
void |
cancelRowUpdates()
Clear the updates made to the current row. |
void |
clearWarnings()
|
java.sql.ResultSet |
cloneSet()
|
void |
close()
|
void |
deleteRow()
Delete the current row from this ResultSet AND from the database. |
int |
findColumn(java.lang.String colName)
Retrieve the index of a column given its label. |
boolean |
first()
Move the cursor to the first row in the ResultSet. |
java.sql.Array |
getArray(int i)
|
java.sql.Array |
getArray(java.lang.String colName)
|
java.io.InputStream |
getAsciiStream(int colIndex)
|
java.io.InputStream |
getAsciiStream(java.lang.String colName)
|
java.math.BigDecimal |
getBigDecimal(int colIndex)
|
java.math.BigDecimal |
getBigDecimal(int colIndex,
int scale)
Deprecated. |
java.math.BigDecimal |
getBigDecimal(java.lang.String colName)
|
java.math.BigDecimal |
getBigDecimal(java.lang.String colName,
int scale)
Deprecated. |
java.io.InputStream |
getBinaryStream(int colIndex)
|
java.io.InputStream |
getBinaryStream(java.lang.String colName)
|
java.sql.Blob |
getBlob(int i)
|
java.sql.Blob |
getBlob(java.lang.String colName)
|
boolean |
getBoolean(int colIndex)
|
boolean |
getBoolean(java.lang.String colName)
|
byte |
getByte(int colIndex)
|
byte |
getByte(java.lang.String colName)
|
byte[] |
getBytes(int colIndex)
|
byte[] |
getBytes(java.lang.String colName)
|
java.io.Reader |
getCharacterStream(int colIndex)
|
java.io.Reader |
getCharacterStream(java.lang.String colName)
|
java.sql.Clob |
getClob(int colIndex)
|
java.sql.Clob |
getClob(java.lang.String colName)
|
int |
getConcurrency()
|
java.lang.String |
getCursorName()
This implementation does not support named cursors. |
java.sql.Date |
getDate(int colIndex)
|
java.sql.Date |
getDate(int colIndex,
java.util.Calendar cal)
|
java.sql.Date |
getDate(java.lang.String colName)
|
java.sql.Date |
getDate(java.lang.String colName,
java.util.Calendar cal)
|
double |
getDouble(int colIndex)
|
double |
getDouble(java.lang.String colName)
|
int |
getFetchDirection()
|
int |
getFetchSize()
|
float |
getFloat(int colIndex)
|
float |
getFloat(java.lang.String colName)
|
int |
getInt(int colIndex)
|
int |
getInt(java.lang.String colName)
|
long |
getLong(int colIndex)
|
long |
getLong(java.lang.String colName)
|
java.sql.ResultSetMetaData |
getMetaData()
|
java.lang.Object |
getObject(int colIndex)
|
java.lang.Object |
getObject(int i,
java.util.Map map)
Custom UDT mapping is not supported, default Map is always used. |
java.lang.Object |
getObject(java.lang.String colName)
|
java.lang.Object |
getObject(java.lang.String colName,
java.util.Map map)
Custom UDT mapping is not supported. |
java.sql.Ref |
getRef(int i)
|
java.sql.Ref |
getRef(java.lang.String colName)
|
int |
getRow()
|
short |
getShort(int colIndex)
|
short |
getShort(java.lang.String colName)
|
java.sql.Statement |
getStatement()
|
java.lang.String |
getString(int colIndex)
|
java.lang.String |
getString(java.lang.String colName)
|
java.sql.Time |
getTime(int colIndex)
|
java.sql.Time |
getTime(int colIndex,
java.util.Calendar cal)
|
java.sql.Time |
getTime(java.lang.String colName)
|
java.sql.Time |
getTime(java.lang.String colName,
java.util.Calendar cal)
|
java.sql.Timestamp |
getTimestamp(int colIndex)
|
java.sql.Timestamp |
getTimestamp(int colIndex,
java.util.Calendar cal)
|
java.sql.Timestamp |
getTimestamp(java.lang.String colName)
|
java.sql.Timestamp |
getTimestamp(java.lang.String colName,
java.util.Calendar cal)
|
int |
getType()
|
java.io.InputStream |
getUnicodeStream(int colIndex)
Deprecated. |
java.io.InputStream |
getUnicodeStream(java.lang.String colName)
Deprecated. |
java.sql.SQLWarning |
getWarnings()
|
void |
insertRow()
|
boolean |
isAfterLast()
|
boolean |
isBeforeFirst()
|
boolean |
isClosed()
|
boolean |
isFirst()
|
boolean |
isLast()
|
boolean |
last()
|
void |
moveToCurrentRow()
If currently on the insert row, this method will move the cursor back to an active row -- either the row the cursor was on before moving to the insert row or the row that the cursor was moved to while handling the insert row. |
void |
moveToInsertRow()
After invoking this method, all updates and gets will be invoked on the insert row rather than the current row. |
boolean |
next()
|
boolean |
previous()
|
void |
refreshRow()
|
boolean |
relative(int rows)
|
boolean |
rowDeleted()
|
boolean |
rowInserted()
|
boolean |
rowUpdated()
|
void |
setConcurrencyType(int n)
|
void |
setFetchDirection(int direction)
|
void |
setFetchSize(int rows)
|
void |
setScrollableType(int n)
|
void |
updateAsciiStream(int colIndex,
java.io.InputStream x,
int length)
|
void |
updateAsciiStream(java.lang.String colName,
java.io.InputStream x,
int length)
|
void |
updateBigDecimal(int colIndex,
java.math.BigDecimal x)
|
void |
updateBigDecimal(java.lang.String colName,
java.math.BigDecimal x)
|
void |
updateBinaryStream(int colIndex,
java.io.InputStream x,
int length)
|
void |
updateBinaryStream(java.lang.String colName,
java.io.InputStream x,
int length)
|
void |
updateBoolean(int colIndex,
boolean x)
|
void |
updateBoolean(java.lang.String colName,
boolean x)
|
void |
updateByte(int colIndex,
byte x)
|
void |
updateByte(java.lang.String colName,
byte x)
|
void |
updateBytes(int colIndex,
byte[] x)
|
void |
updateBytes(java.lang.String colName,
byte[] x)
|
void |
updateCharacterStream(int colIndex,
java.io.Reader reader,
int length)
|
void |
updateCharacterStream(java.lang.String colName,
java.io.Reader reader,
int length)
|
void |
updateDate(int colIndex,
java.sql.Date d)
|
void |
updateDate(java.lang.String colName,
java.sql.Date d)
|
void |
updateDouble(int colIndex,
double d)
|
void |
updateDouble(java.lang.String colName,
double d)
|
void |
updateFloat(int colIndex,
float f)
|
void |
updateFloat(java.lang.String colName,
float f)
|
void |
updateInt(int colIndex,
int i)
|
void |
updateInt(java.lang.String colName,
int i)
|
void |
updateLong(int colIndex,
long l)
|
void |
updateLong(java.lang.String colName,
long l)
|
void |
updateNull(int colIndex)
|
void |
updateNull(java.lang.String colName)
|
void |
updateObject(int colIndex,
java.lang.Object o)
|
void |
updateObject(int colIndex,
java.lang.Object o,
int scale)
|
void |
updateObject(java.lang.String colName,
java.lang.Object o)
|
void |
updateObject(java.lang.String colName,
java.lang.Object o,
int scale)
|
void |
updateRow()
Update the row with the new Result objects in updatedResults. |
void |
updateShort(int colIndex,
short s)
|
void |
updateShort(java.lang.String colName,
short s)
|
void |
updateString(int colIndex,
java.lang.String s)
|
void |
updateString(java.lang.String colName,
java.lang.String s)
|
void |
updateTime(int colIndex,
java.sql.Time t)
|
void |
updateTime(java.lang.String colName,
java.sql.Time t)
|
void |
updateTimestamp(int colIndex,
java.sql.Timestamp t)
|
void |
updateTimestamp(java.lang.String colName,
java.sql.Timestamp t)
|
boolean |
wasNull()
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public PoolManResultSet()
public PoolManResultSet(java.sql.Statement s, java.util.ArrayList rowlist, java.sql.ResultSetMetaData meta, int rScrollableType, int rConcurType) throws java.sql.SQLException
Method Detail |
public void setScrollableType(int n)
public void setConcurrencyType(int n)
public java.sql.ResultSet cloneSet()
public boolean absolute(int row) throws java.sql.SQLException
absolute
in interface java.sql.ResultSet
public void afterLast() throws java.sql.SQLException
afterLast
in interface java.sql.ResultSet
public void beforeFirst() throws java.sql.SQLException
beforeFirst
in interface java.sql.ResultSet
public void cancelRowUpdates() throws java.sql.SQLException
cancelRowUpdates
in interface java.sql.ResultSet
public void clearWarnings() throws java.sql.SQLException
clearWarnings
in interface java.sql.ResultSet
public void close() throws java.sql.SQLException
close
in interface java.sql.ResultSet
public boolean isClosed()
public void deleteRow() throws java.sql.SQLException
deleteRow
in interface java.sql.ResultSet
public int findColumn(java.lang.String colName) throws java.sql.SQLException
findColumn
in interface java.sql.ResultSet
String
- The column namepublic boolean first() throws java.sql.SQLException
first
in interface java.sql.ResultSet
public java.sql.Array getArray(int i) throws java.sql.SQLException
getArray
in interface java.sql.ResultSet
public java.sql.Array getArray(java.lang.String colName) throws java.sql.SQLException
getArray
in interface java.sql.ResultSet
public java.io.InputStream getAsciiStream(int colIndex) throws java.sql.SQLException
getAsciiStream
in interface java.sql.ResultSet
public java.io.InputStream getAsciiStream(java.lang.String colName) throws java.sql.SQLException
getAsciiStream
in interface java.sql.ResultSet
public java.math.BigDecimal getBigDecimal(int colIndex) throws java.sql.SQLException
getBigDecimal
in interface java.sql.ResultSet
public java.math.BigDecimal getBigDecimal(int colIndex, int scale) throws java.sql.SQLException
getBigDecimal
in interface java.sql.ResultSet
public java.math.BigDecimal getBigDecimal(java.lang.String colName) throws java.sql.SQLException
getBigDecimal
in interface java.sql.ResultSet
public java.math.BigDecimal getBigDecimal(java.lang.String colName, int scale) throws java.sql.SQLException
getBigDecimal
in interface java.sql.ResultSet
public java.io.InputStream getBinaryStream(int colIndex) throws java.sql.SQLException
getBinaryStream
in interface java.sql.ResultSet
public java.io.InputStream getBinaryStream(java.lang.String colName) throws java.sql.SQLException
getBinaryStream
in interface java.sql.ResultSet
public java.sql.Blob getBlob(int i) throws java.sql.SQLException
getBlob
in interface java.sql.ResultSet
public java.sql.Blob getBlob(java.lang.String colName) throws java.sql.SQLException
getBlob
in interface java.sql.ResultSet
public boolean getBoolean(int colIndex) throws java.sql.SQLException
getBoolean
in interface java.sql.ResultSet
public boolean getBoolean(java.lang.String colName) throws java.sql.SQLException
getBoolean
in interface java.sql.ResultSet
public byte getByte(int colIndex) throws java.sql.SQLException
getByte
in interface java.sql.ResultSet
public byte getByte(java.lang.String colName) throws java.sql.SQLException
getByte
in interface java.sql.ResultSet
public byte[] getBytes(int colIndex) throws java.sql.SQLException
getBytes
in interface java.sql.ResultSet
public byte[] getBytes(java.lang.String colName) throws java.sql.SQLException
getBytes
in interface java.sql.ResultSet
public java.io.Reader getCharacterStream(int colIndex) throws java.sql.SQLException
getCharacterStream
in interface java.sql.ResultSet
public java.io.Reader getCharacterStream(java.lang.String colName) throws java.sql.SQLException
getCharacterStream
in interface java.sql.ResultSet
public java.sql.Clob getClob(int colIndex) throws java.sql.SQLException
getClob
in interface java.sql.ResultSet
public java.sql.Clob getClob(java.lang.String colName) throws java.sql.SQLException
getClob
in interface java.sql.ResultSet
public int getConcurrency() throws java.sql.SQLException
getConcurrency
in interface java.sql.ResultSet
public java.lang.String getCursorName() throws java.sql.SQLException
getCursorName
in interface java.sql.ResultSet
public java.sql.Date getDate(int colIndex) throws java.sql.SQLException
getDate
in interface java.sql.ResultSet
public java.sql.Date getDate(int colIndex, java.util.Calendar cal) throws java.sql.SQLException
getDate
in interface java.sql.ResultSet
public java.sql.Date getDate(java.lang.String colName) throws java.sql.SQLException
getDate
in interface java.sql.ResultSet
public java.sql.Date getDate(java.lang.String colName, java.util.Calendar cal) throws java.sql.SQLException
getDate
in interface java.sql.ResultSet
public double getDouble(int colIndex) throws java.sql.SQLException
getDouble
in interface java.sql.ResultSet
public double getDouble(java.lang.String colName) throws java.sql.SQLException
getDouble
in interface java.sql.ResultSet
public int getFetchDirection() throws java.sql.SQLException
getFetchDirection
in interface java.sql.ResultSet
public int getFetchSize() throws java.sql.SQLException
getFetchSize
in interface java.sql.ResultSet
public float getFloat(int colIndex) throws java.sql.SQLException
getFloat
in interface java.sql.ResultSet
public float getFloat(java.lang.String colName) throws java.sql.SQLException
getFloat
in interface java.sql.ResultSet
public int getInt(int colIndex) throws java.sql.SQLException
getInt
in interface java.sql.ResultSet
public int getInt(java.lang.String colName) throws java.sql.SQLException
getInt
in interface java.sql.ResultSet
public long getLong(int colIndex) throws java.sql.SQLException
getLong
in interface java.sql.ResultSet
public long getLong(java.lang.String colName) throws java.sql.SQLException
getLong
in interface java.sql.ResultSet
public java.sql.ResultSetMetaData getMetaData() throws java.sql.SQLException
getMetaData
in interface java.sql.ResultSet
public java.lang.Object getObject(int colIndex) throws java.sql.SQLException
getObject
in interface java.sql.ResultSet
public java.lang.Object getObject(int i, java.util.Map map) throws java.sql.SQLException
getObject
in interface java.sql.ResultSet
public java.lang.Object getObject(java.lang.String colName) throws java.sql.SQLException
getObject
in interface java.sql.ResultSet
public java.lang.Object getObject(java.lang.String colName, java.util.Map map) throws java.sql.SQLException
getObject
in interface java.sql.ResultSet
public java.sql.Ref getRef(int i) throws java.sql.SQLException
getRef
in interface java.sql.ResultSet
public java.sql.Ref getRef(java.lang.String colName) throws java.sql.SQLException
getRef
in interface java.sql.ResultSet
public int getRow() throws java.sql.SQLException
getRow
in interface java.sql.ResultSet
public short getShort(int colIndex) throws java.sql.SQLException
getShort
in interface java.sql.ResultSet
public short getShort(java.lang.String colName) throws java.sql.SQLException
getShort
in interface java.sql.ResultSet
public java.sql.Statement getStatement() throws java.sql.SQLException
getStatement
in interface java.sql.ResultSet
public java.lang.String getString(int colIndex) throws java.sql.SQLException
getString
in interface java.sql.ResultSet
public java.lang.String getString(java.lang.String colName) throws java.sql.SQLException
getString
in interface java.sql.ResultSet
public java.sql.Time getTime(int colIndex) throws java.sql.SQLException
getTime
in interface java.sql.ResultSet
public java.sql.Time getTime(int colIndex, java.util.Calendar cal) throws java.sql.SQLException
getTime
in interface java.sql.ResultSet
public java.sql.Time getTime(java.lang.String colName) throws java.sql.SQLException
getTime
in interface java.sql.ResultSet
public java.sql.Time getTime(java.lang.String colName, java.util.Calendar cal) throws java.sql.SQLException
getTime
in interface java.sql.ResultSet
public java.sql.Timestamp getTimestamp(int colIndex) throws java.sql.SQLException
getTimestamp
in interface java.sql.ResultSet
public java.sql.Timestamp getTimestamp(int colIndex, java.util.Calendar cal) throws java.sql.SQLException
getTimestamp
in interface java.sql.ResultSet
public java.sql.Timestamp getTimestamp(java.lang.String colName) throws java.sql.SQLException
getTimestamp
in interface java.sql.ResultSet
public java.sql.Timestamp getTimestamp(java.lang.String colName, java.util.Calendar cal) throws java.sql.SQLException
getTimestamp
in interface java.sql.ResultSet
public int getType() throws java.sql.SQLException
getType
in interface java.sql.ResultSet
public java.io.InputStream getUnicodeStream(int colIndex) throws java.sql.SQLException
getUnicodeStream
in interface java.sql.ResultSet
public java.io.InputStream getUnicodeStream(java.lang.String colName) throws java.sql.SQLException
getUnicodeStream
in interface java.sql.ResultSet
public java.sql.SQLWarning getWarnings() throws java.sql.SQLException
getWarnings
in interface java.sql.ResultSet
public void insertRow() throws java.sql.SQLException
insertRow
in interface java.sql.ResultSet
public boolean isAfterLast() throws java.sql.SQLException
isAfterLast
in interface java.sql.ResultSet
public boolean isBeforeFirst() throws java.sql.SQLException
isBeforeFirst
in interface java.sql.ResultSet
public boolean isFirst() throws java.sql.SQLException
isFirst
in interface java.sql.ResultSet
public boolean isLast() throws java.sql.SQLException
isLast
in interface java.sql.ResultSet
public boolean last() throws java.sql.SQLException
last
in interface java.sql.ResultSet
public void moveToCurrentRow() throws java.sql.SQLException
moveToCurrentRow
in interface java.sql.ResultSet
public void moveToInsertRow() throws java.sql.SQLException
moveToCurrentRow()
.moveToInsertRow
in interface java.sql.ResultSet
public boolean next() throws java.sql.SQLException
next
in interface java.sql.ResultSet
public boolean previous() throws java.sql.SQLException
previous
in interface java.sql.ResultSet
public void refreshRow() throws java.sql.SQLException
refreshRow
in interface java.sql.ResultSet
public boolean relative(int rows) throws java.sql.SQLException
relative
in interface java.sql.ResultSet
public boolean rowDeleted() throws java.sql.SQLException
rowDeleted
in interface java.sql.ResultSet
public boolean rowInserted() throws java.sql.SQLException
rowInserted
in interface java.sql.ResultSet
public boolean rowUpdated() throws java.sql.SQLException
rowUpdated
in interface java.sql.ResultSet
public void setFetchDirection(int direction) throws java.sql.SQLException
setFetchDirection
in interface java.sql.ResultSet
public void setFetchSize(int rows) throws java.sql.SQLException
setFetchSize
in interface java.sql.ResultSet
public void updateAsciiStream(int colIndex, java.io.InputStream x, int length) throws java.sql.SQLException
updateAsciiStream
in interface java.sql.ResultSet
public void updateAsciiStream(java.lang.String colName, java.io.InputStream x, int length) throws java.sql.SQLException
updateAsciiStream
in interface java.sql.ResultSet
public void updateBigDecimal(int colIndex, java.math.BigDecimal x) throws java.sql.SQLException
updateBigDecimal
in interface java.sql.ResultSet
public void updateBigDecimal(java.lang.String colName, java.math.BigDecimal x) throws java.sql.SQLException
updateBigDecimal
in interface java.sql.ResultSet
public void updateBinaryStream(int colIndex, java.io.InputStream x, int length) throws java.sql.SQLException
updateBinaryStream
in interface java.sql.ResultSet
public void updateBinaryStream(java.lang.String colName, java.io.InputStream x, int length) throws java.sql.SQLException
updateBinaryStream
in interface java.sql.ResultSet
public void updateBoolean(int colIndex, boolean x) throws java.sql.SQLException
updateBoolean
in interface java.sql.ResultSet
public void updateBoolean(java.lang.String colName, boolean x) throws java.sql.SQLException
updateBoolean
in interface java.sql.ResultSet
public void updateByte(int colIndex, byte x) throws java.sql.SQLException
updateByte
in interface java.sql.ResultSet
public void updateByte(java.lang.String colName, byte x) throws java.sql.SQLException
updateByte
in interface java.sql.ResultSet
public void updateBytes(int colIndex, byte[] x) throws java.sql.SQLException
updateBytes
in interface java.sql.ResultSet
public void updateBytes(java.lang.String colName, byte[] x) throws java.sql.SQLException
updateBytes
in interface java.sql.ResultSet
public void updateCharacterStream(int colIndex, java.io.Reader reader, int length) throws java.sql.SQLException
updateCharacterStream
in interface java.sql.ResultSet
public void updateCharacterStream(java.lang.String colName, java.io.Reader reader, int length) throws java.sql.SQLException
updateCharacterStream
in interface java.sql.ResultSet
public void updateDate(int colIndex, java.sql.Date d) throws java.sql.SQLException
updateDate
in interface java.sql.ResultSet
public void updateDate(java.lang.String colName, java.sql.Date d) throws java.sql.SQLException
updateDate
in interface java.sql.ResultSet
public void updateDouble(int colIndex, double d) throws java.sql.SQLException
updateDouble
in interface java.sql.ResultSet
public void updateDouble(java.lang.String colName, double d) throws java.sql.SQLException
updateDouble
in interface java.sql.ResultSet
public void updateFloat(int colIndex, float f) throws java.sql.SQLException
updateFloat
in interface java.sql.ResultSet
public void updateFloat(java.lang.String colName, float f) throws java.sql.SQLException
updateFloat
in interface java.sql.ResultSet
public void updateInt(int colIndex, int i) throws java.sql.SQLException
updateInt
in interface java.sql.ResultSet
public void updateInt(java.lang.String colName, int i) throws java.sql.SQLException
updateInt
in interface java.sql.ResultSet
public void updateLong(int colIndex, long l) throws java.sql.SQLException
updateLong
in interface java.sql.ResultSet
public void updateLong(java.lang.String colName, long l) throws java.sql.SQLException
updateLong
in interface java.sql.ResultSet
public void updateNull(int colIndex) throws java.sql.SQLException
updateNull
in interface java.sql.ResultSet
public void updateNull(java.lang.String colName) throws java.sql.SQLException
updateNull
in interface java.sql.ResultSet
public void updateObject(int colIndex, java.lang.Object o) throws java.sql.SQLException
updateObject
in interface java.sql.ResultSet
public void updateObject(int colIndex, java.lang.Object o, int scale) throws java.sql.SQLException
updateObject
in interface java.sql.ResultSet
public void updateObject(java.lang.String colName, java.lang.Object o) throws java.sql.SQLException
updateObject
in interface java.sql.ResultSet
public void updateObject(java.lang.String colName, java.lang.Object o, int scale) throws java.sql.SQLException
updateObject
in interface java.sql.ResultSet
public void updateRow() throws java.sql.SQLException
updateRow
in interface java.sql.ResultSet
public void updateShort(int colIndex, short s) throws java.sql.SQLException
updateShort
in interface java.sql.ResultSet
public void updateShort(java.lang.String colName, short s) throws java.sql.SQLException
updateShort
in interface java.sql.ResultSet
public void updateString(int colIndex, java.lang.String s) throws java.sql.SQLException
updateString
in interface java.sql.ResultSet
public void updateString(java.lang.String colName, java.lang.String s) throws java.sql.SQLException
updateString
in interface java.sql.ResultSet
public void updateTime(int colIndex, java.sql.Time t) throws java.sql.SQLException
updateTime
in interface java.sql.ResultSet
public void updateTime(java.lang.String colName, java.sql.Time t) throws java.sql.SQLException
updateTime
in interface java.sql.ResultSet
public void updateTimestamp(int colIndex, java.sql.Timestamp t) throws java.sql.SQLException
updateTimestamp
in interface java.sql.ResultSet
public void updateTimestamp(java.lang.String colName, java.sql.Timestamp t) throws java.sql.SQLException
updateTimestamp
in interface java.sql.ResultSet
public boolean wasNull() throws java.sql.SQLException
wasNull
in interface java.sql.ResultSet
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |