public class JDBC4ResultSet extends JDBC3ResultSet implements ResultSet, ResultSetMetaData
COLUMN_PRECISION, COLUMN_TYPECAST, COLUMN_TYPENAMEcloseStmt, cols, colsMeta, db, lastCol, limitRows, maxRows, meta, open, row, stmtCLOSE_CURSORS_AT_COMMIT, CONCUR_READ_ONLY, CONCUR_UPDATABLE, FETCH_FORWARD, FETCH_REVERSE, FETCH_UNKNOWN, HOLD_CURSORS_OVER_COMMIT, TYPE_FORWARD_ONLY, TYPE_SCROLL_INSENSITIVE, TYPE_SCROLL_SENSITIVEcolumnNoNulls, columnNullable, columnNullableUnknownSQLITE_ABORT, SQLITE_AUTH, SQLITE_BLOB, SQLITE_BUSY, SQLITE_CANTOPEN, SQLITE_CONSTRAINT, SQLITE_CORRUPT, SQLITE_DONE, SQLITE_EMPTY, SQLITE_ERROR, SQLITE_FLOAT, SQLITE_FULL, SQLITE_INTEGER, SQLITE_INTERNAL, SQLITE_INTERRUPT, SQLITE_IOERR, SQLITE_LOCKED, SQLITE_MISMATCH, SQLITE_MISUSE, SQLITE_NOLFS, SQLITE_NOMEM, SQLITE_NOTFOUND, SQLITE_NULL, SQLITE_OK, SQLITE_PERM, SQLITE_PROTOCOL, SQLITE_READONLY, SQLITE_ROW, SQLITE_SCHEMA, SQLITE_TEXT, SQLITE_TOOBIG| Constructor and Description |
|---|
JDBC4ResultSet(CoreStatement stmt) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
absolute(int row) |
void |
afterLast() |
void |
beforeFirst() |
void |
cancelRowUpdates() |
void |
deleteRow() |
boolean |
first() |
Array |
getArray(int i) |
Array |
getArray(String col) |
InputStream |
getAsciiStream(int col) |
InputStream |
getAsciiStream(String col) |
BigDecimal |
getBigDecimal(int col,
int s) |
BigDecimal |
getBigDecimal(String col,
int s) |
Blob |
getBlob(int col) |
Blob |
getBlob(String col) |
Clob |
getClob(int col) |
Clob |
getClob(String col) |
int |
getHoldability() |
Reader |
getNCharacterStream(int columnIndex) |
Reader |
getNCharacterStream(String columnLabel) |
NClob |
getNClob(int columnIndex) |
NClob |
getNClob(String columnLabel) |
String |
getNString(int columnIndex) |
String |
getNString(String columnLabel) |
<T> T |
getObject(int columnIndex,
Class<T> type) |
Object |
getObject(int col,
Map map) |
<T> T |
getObject(String columnLabel,
Class<T> type) |
Object |
getObject(String col,
Map map) |
Ref |
getRef(int i) |
Ref |
getRef(String col) |
RowId |
getRowId(int columnIndex) |
RowId |
getRowId(String columnLabel) |
SQLXML |
getSQLXML(int columnIndex) |
SQLXML |
getSQLXML(String columnLabel) |
InputStream |
getUnicodeStream(int col) |
InputStream |
getUnicodeStream(String col) |
URL |
getURL(int col) |
URL |
getURL(String col) |
void |
insertRow() |
boolean |
isClosed() |
boolean |
isWrapperFor(Class<?> iface) |
boolean |
last() |
void |
moveToCurrentRow() |
void |
moveToInsertRow() |
boolean |
previous() |
void |
refreshRow() |
boolean |
relative(int rows) |
protected SQLException |
unused() |
<T> T |
unwrap(Class<T> iface) |
void |
updateArray(int col,
Array x) |
void |
updateArray(String col,
Array x) |
void |
updateAsciiStream(int columnIndex,
InputStream x) |
void |
updateAsciiStream(int col,
InputStream x,
int l) |
void |
updateAsciiStream(int columnIndex,
InputStream x,
long length) |
void |
updateAsciiStream(String columnLabel,
InputStream x) |
void |
updateAsciiStream(String col,
InputStream x,
int l) |
void |
updateAsciiStream(String columnLabel,
InputStream x,
long length) |
void |
updateBigDecimal(int col,
BigDecimal x) |
void |
updateBigDecimal(String col,
BigDecimal x) |
void |
updateBinaryStream(int columnIndex,
InputStream x) |
void |
updateBinaryStream(int c,
InputStream x,
int l) |
void |
updateBinaryStream(int columnIndex,
InputStream x,
long length) |
void |
updateBinaryStream(String columnLabel,
InputStream x) |
void |
updateBinaryStream(String c,
InputStream x,
int l) |
void |
updateBinaryStream(String columnLabel,
InputStream x,
long length) |
void |
updateBlob(int col,
Blob x) |
void |
updateBlob(int columnIndex,
InputStream inputStream) |
void |
updateBlob(int columnIndex,
InputStream inputStream,
long length) |
void |
updateBlob(String col,
Blob x) |
void |
updateBlob(String columnLabel,
InputStream inputStream) |
void |
updateBlob(String columnLabel,
InputStream inputStream,
long length) |
void |
updateBoolean(int col,
boolean x) |
void |
updateBoolean(String col,
boolean x) |
void |
updateByte(int col,
byte x) |
void |
updateByte(String col,
byte x) |
void |
updateBytes(int col,
byte[] x) |
void |
updateBytes(String col,
byte[] x) |
void |
updateCharacterStream(int columnIndex,
Reader x) |
void |
updateCharacterStream(int c,
Reader x,
int l) |
void |
updateCharacterStream(int columnIndex,
Reader x,
long length) |
void |
updateCharacterStream(String columnLabel,
Reader reader) |
void |
updateCharacterStream(String c,
Reader r,
int l) |
void |
updateCharacterStream(String columnLabel,
Reader reader,
long length) |
void |
updateClob(int col,
Clob x) |
void |
updateClob(int columnIndex,
Reader reader) |
void |
updateClob(int columnIndex,
Reader reader,
long length) |
void |
updateClob(String col,
Clob x) |
void |
updateClob(String columnLabel,
Reader reader) |
void |
updateClob(String columnLabel,
Reader reader,
long length) |
void |
updateDate(int col,
Date x) |
void |
updateDate(String col,
Date x) |
void |
updateDouble(int col,
double x) |
void |
updateDouble(String col,
double x) |
void |
updateFloat(int col,
float x) |
void |
updateFloat(String col,
float x) |
void |
updateInt(int col,
int x) |
void |
updateInt(String col,
int x) |
void |
updateLong(int col,
long x) |
void |
updateLong(String col,
long x) |
void |
updateNCharacterStream(int columnIndex,
Reader x) |
void |
updateNCharacterStream(int columnIndex,
Reader x,
long length) |
void |
updateNCharacterStream(String columnLabel,
Reader reader) |
void |
updateNCharacterStream(String columnLabel,
Reader reader,
long length) |
void |
updateNClob(int columnIndex,
NClob nClob) |
void |
updateNClob(int columnIndex,
Reader reader) |
void |
updateNClob(int columnIndex,
Reader reader,
long length) |
void |
updateNClob(String columnLabel,
NClob nClob) |
void |
updateNClob(String columnLabel,
Reader reader) |
void |
updateNClob(String columnLabel,
Reader reader,
long length) |
void |
updateNString(int columnIndex,
String nString) |
void |
updateNString(String columnLabel,
String nString) |
void |
updateNull(int col) |
void |
updateNull(String col) |
void |
updateObject(int c,
Object x) |
void |
updateObject(int c,
Object x,
int s) |
void |
updateObject(String col,
Object x) |
void |
updateObject(String c,
Object x,
int s) |
void |
updateRef(int col,
Ref x) |
void |
updateRef(String c,
Ref x) |
void |
updateRow() |
void |
updateRowId(int columnIndex,
RowId x) |
void |
updateRowId(String columnLabel,
RowId x) |
void |
updateShort(int c,
short x) |
void |
updateShort(String c,
short x) |
void |
updateSQLXML(int columnIndex,
SQLXML xmlObject) |
void |
updateSQLXML(String columnLabel,
SQLXML xmlObject) |
void |
updateString(int c,
String x) |
void |
updateString(String c,
String x) |
void |
updateTime(int c,
Time x) |
void |
updateTime(String c,
Time x) |
void |
updateTimestamp(int c,
Timestamp x) |
void |
updateTimestamp(String c,
Timestamp x) |
checkCalendar, clearWarnings, finalize, findColumn, getBigDecimal, getBigDecimal, getBinaryStream, getBinaryStream, getBoolean, getBoolean, getByte, getByte, getBytes, getBytes, getCatalogName, getCharacterStream, getCharacterStream, getColumnClassName, getColumnCount, getColumnDisplaySize, getColumnLabel, getColumnName, getColumnType, getColumnTypeName, getConcurrency, getCursorName, getDate, getDate, getDate, getDate, getDouble, getDouble, getFetchDirection, getFetchSize, getFloat, getFloat, getInt, getInt, getLong, getLong, getMetaData, getObject, getObject, getPrecision, getRow, getScale, getSchemaName, getShort, getShort, getStatement, getString, getString, getTableName, getTime, getTime, getTime, getTime, getTimestamp, getTimestamp, getTimestamp, getTimestamp, getType, getWarnings, isAfterLast, isAutoIncrement, isBeforeFirst, isCaseSensitive, isCurrency, isDefinitelyWritable, isFirst, isLast, isNullable, isReadOnly, isSearchable, isSigned, isWritable, next, rowDeleted, rowInserted, rowUpdated, setFetchDirection, setFetchSize, wasNullcheckCol, checkMeta, checkOpen, close, isOpen, markColclone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitclearWarnings, close, findColumn, getBigDecimal, getBigDecimal, getBinaryStream, getBinaryStream, getBoolean, getBoolean, getByte, getByte, getBytes, getBytes, getCharacterStream, getCharacterStream, getConcurrency, getCursorName, getDate, getDate, getDate, getDate, getDouble, getDouble, getFetchDirection, getFetchSize, getFloat, getFloat, getInt, getInt, getLong, getLong, getMetaData, getObject, getObject, getRow, getShort, getShort, getStatement, getString, getString, getTime, getTime, getTime, getTime, getTimestamp, getTimestamp, getTimestamp, getTimestamp, getType, getWarnings, isAfterLast, isBeforeFirst, isFirst, isLast, next, rowDeleted, rowInserted, rowUpdated, setFetchDirection, setFetchSize, updateObject, updateObject, updateObject, updateObject, wasNullgetCatalogName, getColumnClassName, getColumnCount, getColumnDisplaySize, getColumnLabel, getColumnName, getColumnType, getColumnTypeName, getPrecision, getScale, getSchemaName, getTableName, isAutoIncrement, isCaseSensitive, isCurrency, isDefinitelyWritable, isNullable, isReadOnly, isSearchable, isSigned, isWritablepublic JDBC4ResultSet(CoreStatement stmt)
public <T> T unwrap(Class<T> iface) throws SQLException
unwrap in interface WrapperSQLExceptionpublic boolean isWrapperFor(Class<?> iface) throws SQLException
isWrapperFor in interface WrapperSQLExceptionpublic RowId getRowId(int columnIndex) throws SQLException
getRowId in interface ResultSetSQLExceptionpublic RowId getRowId(String columnLabel) throws SQLException
getRowId in interface ResultSetSQLExceptionpublic void updateRowId(int columnIndex,
RowId x)
throws SQLException
updateRowId in interface ResultSetSQLExceptionpublic void updateRowId(String columnLabel, RowId x) throws SQLException
updateRowId in interface ResultSetSQLExceptionpublic int getHoldability()
throws SQLException
getHoldability in interface ResultSetSQLExceptionpublic boolean isClosed()
throws SQLException
isClosed in interface ResultSetSQLExceptionpublic void updateNString(int columnIndex,
String nString)
throws SQLException
updateNString in interface ResultSetSQLExceptionpublic void updateNString(String columnLabel, String nString) throws SQLException
updateNString in interface ResultSetSQLExceptionpublic void updateNClob(int columnIndex,
NClob nClob)
throws SQLException
updateNClob in interface ResultSetSQLExceptionpublic void updateNClob(String columnLabel, NClob nClob) throws SQLException
updateNClob in interface ResultSetSQLExceptionpublic NClob getNClob(int columnIndex) throws SQLException
getNClob in interface ResultSetSQLExceptionpublic NClob getNClob(String columnLabel) throws SQLException
getNClob in interface ResultSetSQLExceptionpublic SQLXML getSQLXML(int columnIndex) throws SQLException
getSQLXML in interface ResultSetSQLExceptionpublic SQLXML getSQLXML(String columnLabel) throws SQLException
getSQLXML in interface ResultSetSQLExceptionpublic void updateSQLXML(int columnIndex,
SQLXML xmlObject)
throws SQLException
updateSQLXML in interface ResultSetSQLExceptionpublic void updateSQLXML(String columnLabel, SQLXML xmlObject) throws SQLException
updateSQLXML in interface ResultSetSQLExceptionpublic String getNString(int columnIndex) throws SQLException
getNString in interface ResultSetSQLExceptionpublic String getNString(String columnLabel) throws SQLException
getNString in interface ResultSetSQLExceptionpublic Reader getNCharacterStream(int columnIndex) throws SQLException
getNCharacterStream in interface ResultSetSQLExceptionpublic Reader getNCharacterStream(String columnLabel) throws SQLException
getNCharacterStream in interface ResultSetSQLExceptionpublic void updateNCharacterStream(int columnIndex,
Reader x,
long length)
throws SQLException
updateNCharacterStream in interface ResultSetSQLExceptionpublic void updateNCharacterStream(String columnLabel, Reader reader, long length) throws SQLException
updateNCharacterStream in interface ResultSetSQLExceptionpublic void updateAsciiStream(int columnIndex,
InputStream x,
long length)
throws SQLException
updateAsciiStream in interface ResultSetSQLExceptionpublic void updateBinaryStream(int columnIndex,
InputStream x,
long length)
throws SQLException
updateBinaryStream in interface ResultSetSQLExceptionpublic void updateCharacterStream(int columnIndex,
Reader x,
long length)
throws SQLException
updateCharacterStream in interface ResultSetSQLExceptionpublic void updateAsciiStream(String columnLabel, InputStream x, long length) throws SQLException
updateAsciiStream in interface ResultSetSQLExceptionpublic void updateBinaryStream(String columnLabel, InputStream x, long length) throws SQLException
updateBinaryStream in interface ResultSetSQLExceptionpublic void updateCharacterStream(String columnLabel, Reader reader, long length) throws SQLException
updateCharacterStream in interface ResultSetSQLExceptionpublic void updateBlob(int columnIndex,
InputStream inputStream,
long length)
throws SQLException
updateBlob in interface ResultSetSQLExceptionpublic void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException
updateBlob in interface ResultSetSQLExceptionpublic void updateClob(int columnIndex,
Reader reader,
long length)
throws SQLException
updateClob in interface ResultSetSQLExceptionpublic void updateClob(String columnLabel, Reader reader, long length) throws SQLException
updateClob in interface ResultSetSQLExceptionpublic void updateNClob(int columnIndex,
Reader reader,
long length)
throws SQLException
updateNClob in interface ResultSetSQLExceptionpublic void updateNClob(String columnLabel, Reader reader, long length) throws SQLException
updateNClob in interface ResultSetSQLExceptionpublic void updateNCharacterStream(int columnIndex,
Reader x)
throws SQLException
updateNCharacterStream in interface ResultSetSQLExceptionpublic void updateNCharacterStream(String columnLabel, Reader reader) throws SQLException
updateNCharacterStream in interface ResultSetSQLExceptionpublic void updateAsciiStream(int columnIndex,
InputStream x)
throws SQLException
updateAsciiStream in interface ResultSetSQLExceptionpublic void updateBinaryStream(int columnIndex,
InputStream x)
throws SQLException
updateBinaryStream in interface ResultSetSQLExceptionpublic void updateCharacterStream(int columnIndex,
Reader x)
throws SQLException
updateCharacterStream in interface ResultSetSQLExceptionpublic void updateAsciiStream(String columnLabel, InputStream x) throws SQLException
updateAsciiStream in interface ResultSetSQLExceptionpublic void updateBinaryStream(String columnLabel, InputStream x) throws SQLException
updateBinaryStream in interface ResultSetSQLExceptionpublic void updateCharacterStream(String columnLabel, Reader reader) throws SQLException
updateCharacterStream in interface ResultSetSQLExceptionpublic void updateBlob(int columnIndex,
InputStream inputStream)
throws SQLException
updateBlob in interface ResultSetSQLExceptionpublic void updateBlob(String columnLabel, InputStream inputStream) throws SQLException
updateBlob in interface ResultSetSQLExceptionpublic void updateClob(int columnIndex,
Reader reader)
throws SQLException
updateClob in interface ResultSetSQLExceptionpublic void updateClob(String columnLabel, Reader reader) throws SQLException
updateClob in interface ResultSetSQLExceptionpublic void updateNClob(int columnIndex,
Reader reader)
throws SQLException
updateNClob in interface ResultSetSQLExceptionpublic void updateNClob(String columnLabel, Reader reader) throws SQLException
updateNClob in interface ResultSetSQLExceptionpublic <T> T getObject(int columnIndex,
Class<T> type)
throws SQLException
getObject in interface ResultSetSQLExceptionpublic <T> T getObject(String columnLabel, Class<T> type) throws SQLException
getObject in interface ResultSetSQLExceptionprotected SQLException unused()
public Array getArray(int i) throws SQLException
getArray in interface ResultSetSQLExceptionpublic Array getArray(String col) throws SQLException
getArray in interface ResultSetSQLExceptionpublic InputStream getAsciiStream(int col) throws SQLException
getAsciiStream in interface ResultSetSQLExceptionpublic InputStream getAsciiStream(String col) throws SQLException
getAsciiStream in interface ResultSetSQLExceptionpublic BigDecimal getBigDecimal(int col, int s) throws SQLException
getBigDecimal in interface ResultSetSQLExceptionpublic BigDecimal getBigDecimal(String col, int s) throws SQLException
getBigDecimal in interface ResultSetSQLExceptionpublic Blob getBlob(int col) throws SQLException
getBlob in interface ResultSetSQLExceptionpublic Blob getBlob(String col) throws SQLException
getBlob in interface ResultSetSQLExceptionpublic Clob getClob(int col) throws SQLException
getClob in interface ResultSetSQLExceptionpublic Clob getClob(String col) throws SQLException
getClob in interface ResultSetSQLExceptionpublic Object getObject(int col, Map map) throws SQLException
getObject in interface ResultSetSQLExceptionpublic Object getObject(String col, Map map) throws SQLException
getObject in interface ResultSetSQLExceptionpublic Ref getRef(int i) throws SQLException
getRef in interface ResultSetSQLExceptionpublic Ref getRef(String col) throws SQLException
getRef in interface ResultSetSQLExceptionpublic InputStream getUnicodeStream(int col) throws SQLException
getUnicodeStream in interface ResultSetSQLExceptionpublic InputStream getUnicodeStream(String col) throws SQLException
getUnicodeStream in interface ResultSetSQLExceptionpublic URL getURL(int col) throws SQLException
getURL in interface ResultSetSQLExceptionpublic URL getURL(String col) throws SQLException
getURL in interface ResultSetSQLExceptionpublic void insertRow()
throws SQLException
insertRow in interface ResultSetSQLExceptionpublic void moveToCurrentRow()
throws SQLException
moveToCurrentRow in interface ResultSetSQLExceptionpublic void moveToInsertRow()
throws SQLException
moveToInsertRow in interface ResultSetSQLExceptionpublic boolean last()
throws SQLException
last in interface ResultSetSQLExceptionpublic boolean previous()
throws SQLException
previous in interface ResultSetSQLExceptionpublic boolean relative(int rows)
throws SQLException
relative in interface ResultSetSQLExceptionpublic boolean absolute(int row)
throws SQLException
absolute in interface ResultSetSQLExceptionpublic void afterLast()
throws SQLException
afterLast in interface ResultSetSQLExceptionpublic void beforeFirst()
throws SQLException
beforeFirst in interface ResultSetSQLExceptionpublic boolean first()
throws SQLException
first in interface ResultSetSQLExceptionpublic void cancelRowUpdates()
throws SQLException
cancelRowUpdates in interface ResultSetSQLExceptionpublic void deleteRow()
throws SQLException
deleteRow in interface ResultSetSQLExceptionpublic void updateArray(int col,
Array x)
throws SQLException
updateArray in interface ResultSetSQLExceptionpublic void updateArray(String col, Array x) throws SQLException
updateArray in interface ResultSetSQLExceptionpublic void updateAsciiStream(int col,
InputStream x,
int l)
throws SQLException
updateAsciiStream in interface ResultSetSQLExceptionpublic void updateAsciiStream(String col, InputStream x, int l) throws SQLException
updateAsciiStream in interface ResultSetSQLExceptionpublic void updateBigDecimal(int col,
BigDecimal x)
throws SQLException
updateBigDecimal in interface ResultSetSQLExceptionpublic void updateBigDecimal(String col, BigDecimal x) throws SQLException
updateBigDecimal in interface ResultSetSQLExceptionpublic void updateBinaryStream(int c,
InputStream x,
int l)
throws SQLException
updateBinaryStream in interface ResultSetSQLExceptionpublic void updateBinaryStream(String c, InputStream x, int l) throws SQLException
updateBinaryStream in interface ResultSetSQLExceptionpublic void updateBlob(int col,
Blob x)
throws SQLException
updateBlob in interface ResultSetSQLExceptionpublic void updateBlob(String col, Blob x) throws SQLException
updateBlob in interface ResultSetSQLExceptionpublic void updateBoolean(int col,
boolean x)
throws SQLException
updateBoolean in interface ResultSetSQLExceptionpublic void updateBoolean(String col, boolean x) throws SQLException
updateBoolean in interface ResultSetSQLExceptionpublic void updateByte(int col,
byte x)
throws SQLException
updateByte in interface ResultSetSQLExceptionpublic void updateByte(String col, byte x) throws SQLException
updateByte in interface ResultSetSQLExceptionpublic void updateBytes(int col,
byte[] x)
throws SQLException
updateBytes in interface ResultSetSQLExceptionpublic void updateBytes(String col, byte[] x) throws SQLException
updateBytes in interface ResultSetSQLExceptionpublic void updateCharacterStream(int c,
Reader x,
int l)
throws SQLException
updateCharacterStream in interface ResultSetSQLExceptionpublic void updateCharacterStream(String c, Reader r, int l) throws SQLException
updateCharacterStream in interface ResultSetSQLExceptionpublic void updateClob(int col,
Clob x)
throws SQLException
updateClob in interface ResultSetSQLExceptionpublic void updateClob(String col, Clob x) throws SQLException
updateClob in interface ResultSetSQLExceptionpublic void updateDate(int col,
Date x)
throws SQLException
updateDate in interface ResultSetSQLExceptionpublic void updateDate(String col, Date x) throws SQLException
updateDate in interface ResultSetSQLExceptionpublic void updateDouble(int col,
double x)
throws SQLException
updateDouble in interface ResultSetSQLExceptionpublic void updateDouble(String col, double x) throws SQLException
updateDouble in interface ResultSetSQLExceptionpublic void updateFloat(int col,
float x)
throws SQLException
updateFloat in interface ResultSetSQLExceptionpublic void updateFloat(String col, float x) throws SQLException
updateFloat in interface ResultSetSQLExceptionpublic void updateInt(int col,
int x)
throws SQLException
updateInt in interface ResultSetSQLExceptionpublic void updateInt(String col, int x) throws SQLException
updateInt in interface ResultSetSQLExceptionpublic void updateLong(int col,
long x)
throws SQLException
updateLong in interface ResultSetSQLExceptionpublic void updateLong(String col, long x) throws SQLException
updateLong in interface ResultSetSQLExceptionpublic void updateNull(int col)
throws SQLException
updateNull in interface ResultSetSQLExceptionpublic void updateNull(String col) throws SQLException
updateNull in interface ResultSetSQLExceptionpublic void updateObject(int c,
Object x)
throws SQLException
updateObject in interface ResultSetSQLExceptionpublic void updateObject(int c,
Object x,
int s)
throws SQLException
updateObject in interface ResultSetSQLExceptionpublic void updateObject(String col, Object x) throws SQLException
updateObject in interface ResultSetSQLExceptionpublic void updateObject(String c, Object x, int s) throws SQLException
updateObject in interface ResultSetSQLExceptionpublic void updateRef(int col,
Ref x)
throws SQLException
updateRef in interface ResultSetSQLExceptionpublic void updateRef(String c, Ref x) throws SQLException
updateRef in interface ResultSetSQLExceptionpublic void updateRow()
throws SQLException
updateRow in interface ResultSetSQLExceptionpublic void updateShort(int c,
short x)
throws SQLException
updateShort in interface ResultSetSQLExceptionpublic void updateShort(String c, short x) throws SQLException
updateShort in interface ResultSetSQLExceptionpublic void updateString(int c,
String x)
throws SQLException
updateString in interface ResultSetSQLExceptionpublic void updateString(String c, String x) throws SQLException
updateString in interface ResultSetSQLExceptionpublic void updateTime(int c,
Time x)
throws SQLException
updateTime in interface ResultSetSQLExceptionpublic void updateTime(String c, Time x) throws SQLException
updateTime in interface ResultSetSQLExceptionpublic void updateTimestamp(int c,
Timestamp x)
throws SQLException
updateTimestamp in interface ResultSetSQLExceptionpublic void updateTimestamp(String c, Timestamp x) throws SQLException
updateTimestamp in interface ResultSetSQLExceptionpublic void refreshRow()
throws SQLException
refreshRow in interface ResultSetSQLExceptionCopyright © 2015. All rights reserved.