| Constructor and Description |
|---|
ResultSetDelegate(ResultSet aResultSet) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
absolute(int row) |
void |
afterLast() |
void |
beforeFirst() |
void |
clearWarnings() |
void |
close() |
int |
findColumn(String columnName) |
boolean |
first() |
Array |
getArray(int i) |
Array |
getArray(String colName) |
InputStream |
getAsciiStream(int columnIndex) |
InputStream |
getAsciiStream(String columnName) |
BigDecimal |
getBigDecimal(int columnIndex) |
BigDecimal |
getBigDecimal(String columnName) |
InputStream |
getBinaryStream(int columnIndex) |
InputStream |
getBinaryStream(String columnName) |
Blob |
getBlob(int i) |
Blob |
getBlob(String colName) |
boolean |
getBoolean(int columnIndex) |
boolean |
getBoolean(String columnName) |
byte |
getByte(int columnIndex) |
byte |
getByte(String columnName) |
byte[] |
getBytes(int columnIndex) |
byte[] |
getBytes(String columnName) |
Reader |
getCharacterStream(int columnIndex) |
Reader |
getCharacterStream(String columnName) |
Clob |
getClob(int i) |
Clob |
getClob(String colName) |
int |
getConcurrency() |
String |
getCursorName() |
Date |
getDate(int columnIndex) |
Date |
getDate(int columnIndex,
Calendar cal) |
Date |
getDate(String columnName) |
Date |
getDate(String columnName,
Calendar cal) |
double |
getDouble(int columnIndex) |
double |
getDouble(String columnName) |
int |
getFetchDirection() |
int |
getFetchSize() |
float |
getFloat(int columnIndex) |
float |
getFloat(String columnName) |
int |
getInt(int columnIndex) |
int |
getInt(String columnName) |
long |
getLong(int columnIndex) |
long |
getLong(String columnName) |
ResultSetMetaData |
getMetaData() |
Object |
getObject(int columnIndex) |
Object |
getObject(int i,
Map map) |
Object |
getObject(String columnName) |
Object |
getObject(String colName,
Map map) |
Ref |
getRef(int i) |
Ref |
getRef(String colName) |
ResultSet |
getResultSet() |
int |
getRow() |
short |
getShort(int columnIndex) |
short |
getShort(String columnName) |
Statement |
getStatement() |
String |
getString(int columnIndex) |
String |
getString(String columnName) |
Time |
getTime(int columnIndex) |
Time |
getTime(int columnIndex,
Calendar cal) |
Time |
getTime(String columnName) |
Time |
getTime(String columnName,
Calendar cal) |
Timestamp |
getTimestamp(int columnIndex) |
Timestamp |
getTimestamp(int columnIndex,
Calendar cal) |
Timestamp |
getTimestamp(String columnName) |
Timestamp |
getTimestamp(String columnName,
Calendar cal) |
int |
getType() |
URL |
getURL(int columnIndex) |
URL |
getURL(String columnName) |
SQLWarning |
getWarnings() |
boolean |
isAfterLast() |
boolean |
isBeforeFirst() |
boolean |
isFirst() |
boolean |
isLast() |
boolean |
last() |
boolean |
next() |
boolean |
previous() |
boolean |
relative(int rows) |
boolean |
rowDeleted() |
boolean |
rowInserted() |
boolean |
rowUpdated() |
void |
setFetchDirection(int direction) |
void |
setFetchSize(int rows) |
boolean |
wasNull() |
protected final ResultSet resultSet
public ResultSetDelegate(ResultSet aResultSet)
public ResultSet getResultSet()
public boolean next()
throws SQLException
SQLExceptionpublic void close()
throws SQLException
SQLExceptionpublic boolean wasNull()
throws SQLException
SQLExceptionpublic String getString(int columnIndex) throws SQLException
SQLExceptionpublic boolean getBoolean(int columnIndex)
throws SQLException
SQLExceptionpublic byte getByte(int columnIndex)
throws SQLException
SQLExceptionpublic short getShort(int columnIndex)
throws SQLException
SQLExceptionpublic int getInt(int columnIndex)
throws SQLException
SQLExceptionpublic long getLong(int columnIndex)
throws SQLException
SQLExceptionpublic float getFloat(int columnIndex)
throws SQLException
SQLExceptionpublic double getDouble(int columnIndex)
throws SQLException
SQLExceptionpublic byte[] getBytes(int columnIndex)
throws SQLException
SQLExceptionpublic Date getDate(int columnIndex) throws SQLException
SQLExceptionpublic Time getTime(int columnIndex) throws SQLException
SQLExceptionpublic Timestamp getTimestamp(int columnIndex) throws SQLException
SQLExceptionpublic InputStream getAsciiStream(int columnIndex) throws SQLException
SQLExceptionpublic InputStream getBinaryStream(int columnIndex) throws SQLException
SQLExceptionpublic String getString(String columnName) throws SQLException
SQLExceptionpublic boolean getBoolean(String columnName) throws SQLException
SQLExceptionpublic byte getByte(String columnName) throws SQLException
SQLExceptionpublic short getShort(String columnName) throws SQLException
SQLExceptionpublic int getInt(String columnName) throws SQLException
SQLExceptionpublic long getLong(String columnName) throws SQLException
SQLExceptionpublic float getFloat(String columnName) throws SQLException
SQLExceptionpublic double getDouble(String columnName) throws SQLException
SQLExceptionpublic byte[] getBytes(String columnName) throws SQLException
SQLExceptionpublic Date getDate(String columnName) throws SQLException
SQLExceptionpublic Time getTime(String columnName) throws SQLException
SQLExceptionpublic Timestamp getTimestamp(String columnName) throws SQLException
SQLExceptionpublic InputStream getAsciiStream(String columnName) throws SQLException
SQLExceptionpublic InputStream getBinaryStream(String columnName) throws SQLException
SQLExceptionpublic SQLWarning getWarnings() throws SQLException
SQLExceptionpublic void clearWarnings()
throws SQLException
SQLExceptionpublic String getCursorName() throws SQLException
SQLExceptionpublic ResultSetMetaData getMetaData() throws SQLException
SQLExceptionpublic Object getObject(int columnIndex) throws SQLException
SQLExceptionpublic Object getObject(String columnName) throws SQLException
SQLExceptionpublic int findColumn(String columnName) throws SQLException
SQLExceptionpublic Reader getCharacterStream(int columnIndex) throws SQLException
SQLExceptionpublic Reader getCharacterStream(String columnName) throws SQLException
SQLExceptionpublic BigDecimal getBigDecimal(int columnIndex) throws SQLException
SQLExceptionpublic BigDecimal getBigDecimal(String columnName) throws SQLException
SQLExceptionpublic boolean isBeforeFirst()
throws SQLException
SQLExceptionpublic boolean isAfterLast()
throws SQLException
SQLExceptionpublic boolean isFirst()
throws SQLException
SQLExceptionpublic boolean isLast()
throws SQLException
SQLExceptionpublic void beforeFirst()
throws SQLException
SQLExceptionpublic void afterLast()
throws SQLException
SQLExceptionpublic boolean first()
throws SQLException
SQLExceptionpublic boolean last()
throws SQLException
SQLExceptionpublic int getRow()
throws SQLException
SQLExceptionpublic boolean absolute(int row)
throws SQLException
SQLExceptionpublic boolean relative(int rows)
throws SQLException
SQLExceptionpublic boolean previous()
throws SQLException
SQLExceptionpublic void setFetchDirection(int direction)
throws SQLException
SQLExceptionpublic int getFetchDirection()
throws SQLException
SQLExceptionpublic void setFetchSize(int rows)
throws SQLException
SQLExceptionpublic int getFetchSize()
throws SQLException
SQLExceptionpublic int getType()
throws SQLException
SQLExceptionpublic int getConcurrency()
throws SQLException
SQLExceptionpublic boolean rowUpdated()
throws SQLException
SQLExceptionpublic boolean rowInserted()
throws SQLException
SQLExceptionpublic boolean rowDeleted()
throws SQLException
SQLExceptionpublic Statement getStatement() throws SQLException
SQLExceptionpublic Object getObject(int i, Map map) throws SQLException
SQLExceptionpublic Ref getRef(int i) throws SQLException
SQLExceptionpublic Blob getBlob(int i) throws SQLException
SQLExceptionpublic Clob getClob(int i) throws SQLException
SQLExceptionpublic Array getArray(int i) throws SQLException
SQLExceptionpublic Object getObject(String colName, Map map) throws SQLException
SQLExceptionpublic Ref getRef(String colName) throws SQLException
SQLExceptionpublic Blob getBlob(String colName) throws SQLException
SQLExceptionpublic Clob getClob(String colName) throws SQLException
SQLExceptionpublic Array getArray(String colName) throws SQLException
SQLExceptionpublic Date getDate(int columnIndex, Calendar cal) throws SQLException
SQLExceptionpublic Date getDate(String columnName, Calendar cal) throws SQLException
SQLExceptionpublic Time getTime(int columnIndex, Calendar cal) throws SQLException
SQLExceptionpublic Time getTime(String columnName, Calendar cal) throws SQLException
SQLExceptionpublic Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException
SQLExceptionpublic Timestamp getTimestamp(String columnName, Calendar cal) throws SQLException
SQLExceptionpublic URL getURL(int columnIndex) throws SQLException
SQLExceptionpublic URL getURL(String columnName) throws SQLException
SQLExceptionCopyright © 2008–2018. All rights reserved.