public interface ResultSet
Modifier and Type | Field and Description |
---|---|
static int |
CONCUR_READ_ONLY |
static int |
CONCUR_UPDATABLE |
static int |
FETCH_FORWARD |
static int |
FETCH_REVERSE |
static int |
FETCH_UNKNOWN |
static int |
TYPE_FORWARD_ONLY |
static int |
TYPE_SCROLL_INSENSITIVE |
static int |
TYPE_SCROLL_SENSITIVE |
Modifier and Type | Method and Description |
---|---|
boolean |
absolute(int row) |
void |
afterLast() |
void |
beforeFirst() |
void |
cancelRowUpdates() |
void |
clearWarnings() |
void |
close() |
void |
deleteRow() |
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(int columnIndex,
int scale) |
BigDecimal |
getBigDecimal(String columnName) |
BigDecimal |
getBigDecimal(String columnName,
int scale) |
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) |
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() |
InputStream |
getUnicodeStream(int columnIndex) |
InputStream |
getUnicodeStream(String columnName) |
SQLWarning |
getWarnings() |
void |
insertRow() |
boolean |
isAfterLast() |
boolean |
isBeforeFirst() |
boolean |
isFirst() |
boolean |
isLast() |
boolean |
last() |
void |
moveToCurrentRow() |
void |
moveToInsertRow() |
boolean |
next() |
boolean |
previous() |
void |
refreshRow() |
boolean |
relative(int rows) |
boolean |
rowDeleted() |
boolean |
rowInserted() |
boolean |
rowUpdated() |
void |
setFetchDirection(int direction) |
void |
setFetchSize(int rows) |
void |
updateAsciiStream(int columnIndex,
InputStream x,
int length) |
void |
updateAsciiStream(String columnName,
InputStream x,
int length) |
void |
updateBigDecimal(int columnIndex,
BigDecimal x) |
void |
updateBigDecimal(String columnName,
BigDecimal x) |
void |
updateBinaryStream(int columnIndex,
InputStream x,
int length) |
void |
updateBinaryStream(String columnName,
InputStream x,
int length) |
void |
updateBoolean(int columnIndex,
boolean x) |
void |
updateBoolean(String columnName,
boolean x) |
void |
updateByte(int columnIndex,
byte x) |
void |
updateByte(String columnName,
byte x) |
void |
updateBytes(int columnIndex,
byte[] x) |
void |
updateBytes(String columnName,
byte[] x) |
void |
updateCharacterStream(int columnIndex,
Reader x,
int length) |
void |
updateCharacterStream(String columnName,
Reader reader,
int length) |
void |
updateDate(int columnIndex,
Date x) |
void |
updateDate(String columnName,
Date x) |
void |
updateDouble(int columnIndex,
double x) |
void |
updateDouble(String columnName,
double x) |
void |
updateFloat(int columnIndex,
float x) |
void |
updateFloat(String columnName,
float x) |
void |
updateInt(int columnIndex,
int x) |
void |
updateInt(String columnName,
int x) |
void |
updateLong(int columnIndex,
long x) |
void |
updateLong(String columnName,
long x) |
void |
updateNull(int columnIndex) |
void |
updateNull(String columnName) |
void |
updateObject(int columnIndex,
Object x) |
void |
updateObject(int columnIndex,
Object x,
int scale) |
void |
updateObject(String columnName,
Object x) |
void |
updateObject(String columnName,
Object x,
int scale) |
void |
updateRow() |
void |
updateShort(int columnIndex,
short x) |
void |
updateShort(String columnName,
short x) |
void |
updateString(int columnIndex,
String x) |
void |
updateString(String columnName,
String x) |
void |
updateTime(int columnIndex,
Time x) |
void |
updateTime(String columnName,
Time x) |
void |
updateTimestamp(int columnIndex,
Timestamp x) |
void |
updateTimestamp(String columnName,
Timestamp x) |
boolean |
wasNull() |
static final int FETCH_FORWARD
static final int FETCH_REVERSE
static final int FETCH_UNKNOWN
static final int TYPE_FORWARD_ONLY
static final int TYPE_SCROLL_INSENSITIVE
static final int TYPE_SCROLL_SENSITIVE
static final int CONCUR_READ_ONLY
static final int CONCUR_UPDATABLE
boolean absolute(int row) throws SQLException
SQLException
void afterLast() throws SQLException
SQLException
void beforeFirst() throws SQLException
SQLException
void cancelRowUpdates() throws SQLException
SQLException
void clearWarnings() throws SQLException
SQLException
void close() throws SQLException
SQLException
void deleteRow() throws SQLException
SQLException
int findColumn(String columnName) throws SQLException
SQLException
boolean first() throws SQLException
SQLException
Array getArray(int i) throws SQLException
SQLException
Array getArray(String colName) throws SQLException
SQLException
InputStream getAsciiStream(int columnIndex) throws SQLException
SQLException
InputStream getAsciiStream(String columnName) throws SQLException
SQLException
BigDecimal getBigDecimal(int columnIndex) throws SQLException
SQLException
BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException
SQLException
BigDecimal getBigDecimal(String columnName) throws SQLException
SQLException
BigDecimal getBigDecimal(String columnName, int scale) throws SQLException
SQLException
InputStream getBinaryStream(int columnIndex) throws SQLException
SQLException
InputStream getBinaryStream(String columnName) throws SQLException
SQLException
Blob getBlob(int i) throws SQLException
SQLException
Blob getBlob(String colName) throws SQLException
SQLException
boolean getBoolean(int columnIndex) throws SQLException
SQLException
boolean getBoolean(String columnName) throws SQLException
SQLException
byte getByte(int columnIndex) throws SQLException
SQLException
byte getByte(String columnName) throws SQLException
SQLException
byte[] getBytes(int columnIndex) throws SQLException
SQLException
byte[] getBytes(String columnName) throws SQLException
SQLException
Reader getCharacterStream(int columnIndex) throws SQLException
SQLException
Reader getCharacterStream(String columnName) throws SQLException
SQLException
Clob getClob(int i) throws SQLException
SQLException
Clob getClob(String colName) throws SQLException
SQLException
int getConcurrency() throws SQLException
SQLException
String getCursorName() throws SQLException
SQLException
Date getDate(int columnIndex) throws SQLException
SQLException
Date getDate(int columnIndex, Calendar cal) throws SQLException
SQLException
Date getDate(String columnName) throws SQLException
SQLException
Date getDate(String columnName, Calendar cal) throws SQLException
SQLException
double getDouble(int columnIndex) throws SQLException
SQLException
double getDouble(String columnName) throws SQLException
SQLException
int getFetchDirection() throws SQLException
SQLException
int getFetchSize() throws SQLException
SQLException
float getFloat(int columnIndex) throws SQLException
SQLException
float getFloat(String columnName) throws SQLException
SQLException
int getInt(int columnIndex) throws SQLException
SQLException
int getInt(String columnName) throws SQLException
SQLException
long getLong(int columnIndex) throws SQLException
SQLException
long getLong(String columnName) throws SQLException
SQLException
ResultSetMetaData getMetaData() throws SQLException
SQLException
Object getObject(int columnIndex) throws SQLException
SQLException
Object getObject(int i, Map map) throws SQLException
SQLException
Object getObject(String columnName) throws SQLException
SQLException
Object getObject(String colName, Map map) throws SQLException
SQLException
Ref getRef(int i) throws SQLException
SQLException
Ref getRef(String colName) throws SQLException
SQLException
int getRow() throws SQLException
SQLException
short getShort(int columnIndex) throws SQLException
SQLException
short getShort(String columnName) throws SQLException
SQLException
Statement getStatement() throws SQLException
SQLException
String getString(int columnIndex) throws SQLException
SQLException
String getString(String columnName) throws SQLException
SQLException
Time getTime(int columnIndex) throws SQLException
SQLException
Time getTime(int columnIndex, Calendar cal) throws SQLException
SQLException
Time getTime(String columnName) throws SQLException
SQLException
Time getTime(String columnName, Calendar cal) throws SQLException
SQLException
Timestamp getTimestamp(int columnIndex) throws SQLException
SQLException
Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException
SQLException
Timestamp getTimestamp(String columnName) throws SQLException
SQLException
Timestamp getTimestamp(String columnName, Calendar cal) throws SQLException
SQLException
int getType() throws SQLException
SQLException
InputStream getUnicodeStream(int columnIndex) throws SQLException
SQLException
InputStream getUnicodeStream(String columnName) throws SQLException
SQLException
SQLWarning getWarnings() throws SQLException
SQLException
void insertRow() throws SQLException
SQLException
boolean isAfterLast() throws SQLException
SQLException
boolean isBeforeFirst() throws SQLException
SQLException
boolean isFirst() throws SQLException
SQLException
boolean isLast() throws SQLException
SQLException
boolean last() throws SQLException
SQLException
void moveToCurrentRow() throws SQLException
SQLException
void moveToInsertRow() throws SQLException
SQLException
boolean next() throws SQLException
SQLException
boolean previous() throws SQLException
SQLException
void refreshRow() throws SQLException
SQLException
boolean relative(int rows) throws SQLException
SQLException
boolean rowDeleted() throws SQLException
SQLException
boolean rowInserted() throws SQLException
SQLException
boolean rowUpdated() throws SQLException
SQLException
void setFetchDirection(int direction) throws SQLException
SQLException
void setFetchSize(int rows) throws SQLException
SQLException
void updateAsciiStream(int columnIndex, InputStream x, int length) throws SQLException
SQLException
void updateAsciiStream(String columnName, InputStream x, int length) throws SQLException
SQLException
void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException
SQLException
void updateBigDecimal(String columnName, BigDecimal x) throws SQLException
SQLException
void updateBinaryStream(int columnIndex, InputStream x, int length) throws SQLException
SQLException
void updateBinaryStream(String columnName, InputStream x, int length) throws SQLException
SQLException
void updateBoolean(int columnIndex, boolean x) throws SQLException
SQLException
void updateBoolean(String columnName, boolean x) throws SQLException
SQLException
void updateByte(int columnIndex, byte x) throws SQLException
SQLException
void updateByte(String columnName, byte x) throws SQLException
SQLException
void updateBytes(int columnIndex, byte[] x) throws SQLException
SQLException
void updateBytes(String columnName, byte[] x) throws SQLException
SQLException
void updateCharacterStream(int columnIndex, Reader x, int length) throws SQLException
SQLException
void updateCharacterStream(String columnName, Reader reader, int length) throws SQLException
SQLException
void updateDate(int columnIndex, Date x) throws SQLException
SQLException
void updateDate(String columnName, Date x) throws SQLException
SQLException
void updateDouble(int columnIndex, double x) throws SQLException
SQLException
void updateDouble(String columnName, double x) throws SQLException
SQLException
void updateFloat(int columnIndex, float x) throws SQLException
SQLException
void updateFloat(String columnName, float x) throws SQLException
SQLException
void updateInt(int columnIndex, int x) throws SQLException
SQLException
void updateInt(String columnName, int x) throws SQLException
SQLException
void updateLong(int columnIndex, long x) throws SQLException
SQLException
void updateLong(String columnName, long x) throws SQLException
SQLException
void updateNull(int columnIndex) throws SQLException
SQLException
void updateNull(String columnName) throws SQLException
SQLException
void updateObject(int columnIndex, Object x) throws SQLException
SQLException
void updateObject(int columnIndex, Object x, int scale) throws SQLException
SQLException
void updateObject(String columnName, Object x) throws SQLException
SQLException
void updateObject(String columnName, Object x, int scale) throws SQLException
SQLException
void updateRow() throws SQLException
SQLException
void updateShort(int columnIndex, short x) throws SQLException
SQLException
void updateShort(String columnName, short x) throws SQLException
SQLException
void updateString(int columnIndex, String x) throws SQLException
SQLException
void updateString(String columnName, String x) throws SQLException
SQLException
void updateTime(int columnIndex, Time x) throws SQLException
SQLException
void updateTime(String columnName, Time x) throws SQLException
SQLException
void updateTimestamp(int columnIndex, Timestamp x) throws SQLException
SQLException
void updateTimestamp(String columnName, Timestamp x) throws SQLException
SQLException
boolean wasNull() throws SQLException
SQLException