| Symfoware(R) Server JDBCドライバユーザーズガイド - FUJITSU - |
目次
索引
![]()
|
付録A APIリファレンス
結果セットに関するインタフェースです。
不要になったResultSetオブジェクトは明示的にクローズして、できるだけ早く関連するリソースを解放することを推奨します。
ResultSetインタフェースで使用する定数値の内容を以下に示します。
|
ResultSetインタフェースの定数値 |
|
|---|---|
|
static int |
TYPE_FORWARD_ONLY |
|
static int |
TYPE_SCROLL_INSENSITIVE |
|
static int |
TYPE_SCROLL_SENSITIVE |
|
static int |
CONCUR_READ_ONLY |
|
static int |
CONCUR_UPDATABLE |
|
static int |
FETCH_FORWARD |
|
static int |
FETCH_REVERSE |
|
static int |
FETCH_UNKNOWN |
|
戻り値の型 |
メソッドの詳細 |
|---|---|
|
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()
|
目次
索引
![]()
|