public interface ResultSet
extends java.lang.AutoCloseable
Modifier and Type | Field and Description |
---|---|
static int |
CLOSE_CURSORS_AT_COMMIT |
static int |
CONCUR_READ_ONLY |
static int |
CONCUR_UPDATABLE |
static int |
FETCH_FORWARD |
static int |
FETCH_REVERSE |
static int |
FETCH_UNKNOWN |
static int |
HOLD_CURSORS_OVER_COMMIT |
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 |
clearWarnings() |
void |
close() |
int |
findColumn(java.lang.String columnName) |
boolean |
first() |
BigDecimal |
getBigDecimal(int columnIndex) |
BigDecimal |
getBigDecimal(int columnIndex,
int scale) |
BigDecimal |
getBigDecimal(java.lang.String columnName) |
BigDecimal |
getBigDecimal(java.lang.String columnName,
int scale) |
boolean |
getBoolean(int columnIndex) |
boolean |
getBoolean(java.lang.String columnName) |
byte |
getByte(int columnIndex) |
byte |
getByte(java.lang.String columnName) |
byte[] |
getBytes(int columnIndex) |
byte[] |
getBytes(java.lang.String columnName) |
int |
getConcurrency() |
java.lang.String |
getCursorName() |
Date |
getDate(int columnIndex) |
Date |
getDate(java.lang.String columnName) |
double |
getDouble(int columnIndex) |
double |
getDouble(java.lang.String columnName) |
int |
getFetchDirection() |
int |
getFetchSize() |
int |
getInt(int columnIndex) |
int |
getInt(java.lang.String columnName) |
long |
getLong(int columnIndex) |
long |
getLong(java.lang.String columnName) |
ResultSetMetaData |
getMetaData() |
java.lang.Object |
getObject(int columnIndex) |
java.lang.Object |
getObject(java.lang.String columnName) |
int |
getRow() |
short |
getShort(int columnIndex) |
short |
getShort(java.lang.String columnName) |
Statement |
getStatement() |
java.lang.String |
getString(int columnIndex) |
java.lang.String |
getString(java.lang.String columnName) |
Time |
getTime(int columnIndex) |
Time |
getTime(java.lang.String columnName) |
Timestamp |
getTimestamp(int columnIndex) |
Timestamp |
getTimestamp(java.lang.String columnName) |
int |
getType() |
java.sql.SQLWarning |
getWarnings() |
boolean |
isAfterLast() |
boolean |
isBeforeFirst() |
boolean |
isFirst() |
boolean |
isLast() |
boolean |
last() |
boolean |
next() |
boolean |
previous() |
boolean |
relative(int rows) |
void |
setFetchDirection(int direction) |
void |
setFetchSize(int rows) |
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
static final int HOLD_CURSORS_OVER_COMMIT
static final int CLOSE_CURSORS_AT_COMMIT
boolean next() throws java.sql.SQLException
java.sql.SQLException
void close() throws java.sql.SQLException
close
in interface java.lang.AutoCloseable
java.sql.SQLException
boolean wasNull() throws java.sql.SQLException
java.sql.SQLException
java.lang.String getString(int columnIndex) throws java.sql.SQLException
java.sql.SQLException
boolean getBoolean(int columnIndex) throws java.sql.SQLException
java.sql.SQLException
byte getByte(int columnIndex) throws java.sql.SQLException
java.sql.SQLException
short getShort(int columnIndex) throws java.sql.SQLException
java.sql.SQLException
int getInt(int columnIndex) throws java.sql.SQLException
java.sql.SQLException
long getLong(int columnIndex) throws java.sql.SQLException
java.sql.SQLException
double getDouble(int columnIndex) throws java.sql.SQLException
java.sql.SQLException
BigDecimal getBigDecimal(int columnIndex, int scale) throws java.sql.SQLException
java.sql.SQLException
byte[] getBytes(int columnIndex) throws java.sql.SQLException
java.sql.SQLException
Date getDate(int columnIndex) throws java.sql.SQLException
java.sql.SQLException
Time getTime(int columnIndex) throws java.sql.SQLException
java.sql.SQLException
Timestamp getTimestamp(int columnIndex) throws java.sql.SQLException
java.sql.SQLException
java.lang.String getString(java.lang.String columnName) throws java.sql.SQLException
java.sql.SQLException
boolean getBoolean(java.lang.String columnName) throws java.sql.SQLException
java.sql.SQLException
byte getByte(java.lang.String columnName) throws java.sql.SQLException
java.sql.SQLException
short getShort(java.lang.String columnName) throws java.sql.SQLException
java.sql.SQLException
int getInt(java.lang.String columnName) throws java.sql.SQLException
java.sql.SQLException
long getLong(java.lang.String columnName) throws java.sql.SQLException
java.sql.SQLException
double getDouble(java.lang.String columnName) throws java.sql.SQLException
java.sql.SQLException
BigDecimal getBigDecimal(java.lang.String columnName, int scale) throws java.sql.SQLException
java.sql.SQLException
byte[] getBytes(java.lang.String columnName) throws java.sql.SQLException
java.sql.SQLException
Date getDate(java.lang.String columnName) throws java.sql.SQLException
java.sql.SQLException
Time getTime(java.lang.String columnName) throws java.sql.SQLException
java.sql.SQLException
Timestamp getTimestamp(java.lang.String columnName) throws java.sql.SQLException
java.sql.SQLException
java.sql.SQLWarning getWarnings() throws java.sql.SQLException
java.sql.SQLException
void clearWarnings() throws java.sql.SQLException
java.sql.SQLException
java.lang.String getCursorName() throws java.sql.SQLException
java.sql.SQLException
ResultSetMetaData getMetaData() throws java.sql.SQLException
java.sql.SQLException
java.lang.Object getObject(int columnIndex) throws java.sql.SQLException
java.sql.SQLException
java.lang.Object getObject(java.lang.String columnName) throws java.sql.SQLException
java.sql.SQLException
int findColumn(java.lang.String columnName) throws java.sql.SQLException
java.sql.SQLException
BigDecimal getBigDecimal(int columnIndex) throws java.sql.SQLException
java.sql.SQLException
BigDecimal getBigDecimal(java.lang.String columnName) throws java.sql.SQLException
java.sql.SQLException
boolean isBeforeFirst() throws java.sql.SQLException
java.sql.SQLException
boolean isAfterLast() throws java.sql.SQLException
java.sql.SQLException
boolean isFirst() throws java.sql.SQLException
java.sql.SQLException
boolean isLast() throws java.sql.SQLException
java.sql.SQLException
void beforeFirst() throws java.sql.SQLException
java.sql.SQLException
void afterLast() throws java.sql.SQLException
java.sql.SQLException
boolean first() throws java.sql.SQLException
java.sql.SQLException
boolean last() throws java.sql.SQLException
java.sql.SQLException
int getRow() throws java.sql.SQLException
java.sql.SQLException
boolean absolute(int row) throws java.sql.SQLException
java.sql.SQLException
boolean relative(int rows) throws java.sql.SQLException
java.sql.SQLException
boolean previous() throws java.sql.SQLException
java.sql.SQLException
void setFetchDirection(int direction) throws java.sql.SQLException
java.sql.SQLException
int getFetchDirection() throws java.sql.SQLException
java.sql.SQLException
void setFetchSize(int rows) throws java.sql.SQLException
java.sql.SQLException
int getFetchSize() throws java.sql.SQLException
java.sql.SQLException
int getType() throws java.sql.SQLException
java.sql.SQLException
int getConcurrency() throws java.sql.SQLException
java.sql.SQLException
Statement getStatement() throws java.sql.SQLException
java.sql.SQLException