public interface FWResultSet extends AutoCloseable
FWConnectionManager,
ResultSet| 修飾子とタイプ | フィールドと説明 |
|---|---|
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 |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
absolute(int row) |
void |
afterLast() |
void |
beforeFirst() |
void |
cancelRowUpdates() |
void |
close() |
void |
deleteRow() |
int |
findColumn(String columnLabel) |
boolean |
first() |
Array |
getArray(int columnIndex) |
Array |
getArray(String columnLabel) |
InputStream |
getAsciiStream(int columnIndex) |
InputStream |
getAsciiStream(String columnLabel) |
BigDecimal |
getBigDecimal(int columnIndex) |
BigDecimal |
getBigDecimal(String columnLabel) |
InputStream |
getBinaryStream(int columnIndex) |
InputStream |
getBinaryStream(String columnLabel) |
Blob |
getBlob(int columnIndex) |
Blob |
getBlob(String columnLabel) |
boolean |
getBoolean(int columnIndex) |
boolean |
getBoolean(String columnLabel) |
byte |
getByte(int columnIndex) |
byte |
getByte(String columnLabel) |
byte[] |
getBytes(int columnIndex) |
byte[] |
getBytes(String columnLabel) |
Reader |
getCharacterStream(int columnIndex) |
Reader |
getCharacterStream(String columnLabel) |
Clob |
getClob(int columnIndex) |
Clob |
getClob(String columnLabel) |
int |
getConcurrency() |
Date |
getDate(int columnIndex) |
Date |
getDate(int columnIndex,
Calendar cal) |
Date |
getDate(String columnLabel) |
Date |
getDate(String columnLabel,
Calendar cal) |
double |
getDouble(int columnIndex) |
double |
getDouble(String columnLabel) |
int |
getFetchDirection() |
int |
getFetchSize() |
float |
getFloat(int columnIndex) |
float |
getFloat(String columnLabel) |
int |
getHoldability() |
int |
getInt(int columnIndex) |
int |
getInt(String columnLabel) |
long |
getLong(int columnIndex) |
long |
getLong(String columnLabel) |
ResultSetMetaData |
getMetaData() |
Reader |
getNCharacterStream(int columnIndex) |
Reader |
getNCharacterStream(String columnLabel) |
NClob |
getNClob(int columnIndex) |
NClob |
getNClob(String columnLabel) |
String |
getNString(int columnIndex) |
String |
getNString(String columnLabel) |
Object |
getObject(int columnIndex) |
<T> T |
getObject(int columnIndex,
Class<T> type) |
Object |
getObject(int columnIndex,
Map<String,Class<?>> map) |
Object |
getObject(String columnLabel) |
<T> T |
getObject(String columnLabel,
Class<T> type) |
Object |
getObject(String columnLabel,
Map<String,Class<?>> map) |
Ref |
getRef(int columnIndex) |
Ref |
getRef(String columnLabel) |
int |
getRow() |
RowId |
getRowId(int columnIndex) |
RowId |
getRowId(String columnLabel) |
short |
getShort(int columnIndex) |
short |
getShort(String columnLabel) |
SQLXML |
getSQLXML(int columnIndex) |
SQLXML |
getSQLXML(String columnLabel) |
FWStatement |
getStatement() |
String |
getString(int columnIndex) |
String |
getString(String columnLabel) |
Time |
getTime(int columnIndex) |
Time |
getTime(int columnIndex,
Calendar cal) |
Time |
getTime(String columnLabel) |
Time |
getTime(String columnLabel,
Calendar cal) |
Timestamp |
getTimestamp(int columnIndex) |
Timestamp |
getTimestamp(int columnIndex,
Calendar cal) |
Timestamp |
getTimestamp(String columnLabel) |
Timestamp |
getTimestamp(String columnLabel,
Calendar cal) |
int |
getType() |
URL |
getURL(int columnIndex) |
URL |
getURL(String columnLabel) |
void |
insertRow() |
boolean |
isAfterLast() |
boolean |
isBeforeFirst() |
boolean |
isClosed() |
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 |
updateArray(int columnIndex,
Array x) |
void |
updateArray(String columnLabel,
Array x) |
void |
updateAsciiStream(int columnIndex,
InputStream x) |
void |
updateAsciiStream(int columnIndex,
InputStream x,
int length) |
void |
updateAsciiStream(int columnIndex,
InputStream x,
long length) |
void |
updateAsciiStream(String columnLabel,
InputStream x) |
void |
updateAsciiStream(String columnLabel,
InputStream x,
int length) |
void |
updateAsciiStream(String columnLabel,
InputStream x,
long length) |
void |
updateBigDecimal(int columnIndex,
BigDecimal x) |
void |
updateBigDecimal(String columnLabel,
BigDecimal x) |
void |
updateBinaryStream(int columnIndex,
InputStream x) |
void |
updateBinaryStream(int columnIndex,
InputStream x,
int length) |
void |
updateBinaryStream(int columnIndex,
InputStream x,
long length) |
void |
updateBinaryStream(String columnLabel,
InputStream x) |
void |
updateBinaryStream(String columnLabel,
InputStream x,
int length) |
void |
updateBinaryStream(String columnLabel,
InputStream x,
long length) |
void |
updateBlob(int columnIndex,
Blob x) |
void |
updateBlob(int columnIndex,
InputStream inputStream) |
void |
updateBlob(int columnIndex,
InputStream inputStream,
long length) |
void |
updateBlob(String columnLabel,
Blob x) |
void |
updateBlob(String columnLabel,
InputStream inputStream) |
void |
updateBlob(String columnLabel,
InputStream inputStream,
long length) |
void |
updateBoolean(int columnIndex,
boolean x) |
void |
updateBoolean(String columnLabel,
boolean x) |
void |
updateByte(int columnIndex,
byte x) |
void |
updateByte(String columnLabel,
byte x) |
void |
updateBytes(int columnIndex,
byte[] x) |
void |
updateBytes(String columnLabel,
byte[] x) |
void |
updateCharacterStream(int columnIndex,
Reader x) |
void |
updateCharacterStream(int columnIndex,
Reader x,
int length) |
void |
updateCharacterStream(int columnIndex,
Reader x,
long length) |
void |
updateCharacterStream(String columnLabel,
Reader reader) |
void |
updateCharacterStream(String columnLabel,
Reader reader,
int length) |
void |
updateCharacterStream(String columnLabel,
Reader reader,
long length) |
void |
updateClob(int columnIndex,
Clob x) |
void |
updateClob(int columnIndex,
Reader reader) |
void |
updateClob(int columnIndex,
Reader reader,
long length) |
void |
updateClob(String columnLabel,
Clob x) |
void |
updateClob(String columnLabel,
Reader reader) |
void |
updateClob(String columnLabel,
Reader reader,
long length) |
void |
updateDate(int columnIndex,
Date x) |
void |
updateDate(String columnLabel,
Date x) |
void |
updateDouble(int columnIndex,
double x) |
void |
updateDouble(String columnLabel,
double x) |
void |
updateFloat(int columnIndex,
float x) |
void |
updateFloat(String columnLabel,
float x) |
void |
updateInt(int columnIndex,
int x) |
void |
updateInt(String columnLabel,
int x) |
void |
updateLong(int columnIndex,
long x) |
void |
updateLong(String columnLabel,
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 columnIndex) |
void |
updateNull(String columnLabel) |
void |
updateObject(int columnIndex,
Object x) |
void |
updateObject(int columnIndex,
Object x,
int scaleOrLength) |
void |
updateObject(int columnIndex,
Object x,
SQLType targetSqlType) |
void |
updateObject(int columnIndex,
Object x,
SQLType targetSqlType,
int scaleOrLength) |
void |
updateObject(String columnLabel,
Object x) |
void |
updateObject(String columnLabel,
Object x,
int scaleOrLength) |
void |
updateObject(String columnLabel,
Object x,
SQLType targetSqlType) |
void |
updateObject(String columnLabel,
Object x,
SQLType targetSqlType,
int scaleOrLength) |
void |
updateRef(int columnIndex,
Ref x) |
void |
updateRef(String columnLabel,
Ref x) |
void |
updateRow() |
void |
updateRowId(int columnIndex,
RowId x) |
void |
updateRowId(String columnLabel,
RowId x) |
void |
updateShort(int columnIndex,
short x) |
void |
updateShort(String columnLabel,
short x) |
void |
updateSQLXML(int columnIndex,
SQLXML xmlObject) |
void |
updateSQLXML(String columnLabel,
SQLXML xmlObject) |
void |
updateString(int columnIndex,
String x) |
void |
updateString(String columnLabel,
String x) |
void |
updateTime(int columnIndex,
Time x) |
void |
updateTime(String columnLabel,
Time x) |
void |
updateTimestamp(int columnIndex,
Timestamp x) |
void |
updateTimestamp(String columnLabel,
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
static final int HOLD_CURSORS_OVER_COMMIT
static final int CLOSE_CURSORS_AT_COMMIT
boolean next()
throws SQLException
SQLExceptionvoid close()
throws SQLException
close インタフェース内 AutoCloseableSQLExceptionboolean wasNull()
throws SQLException
SQLExceptionString getString(int columnIndex) throws SQLException
SQLExceptionboolean getBoolean(int columnIndex)
throws SQLException
SQLExceptionbyte getByte(int columnIndex)
throws SQLException
SQLExceptionshort getShort(int columnIndex)
throws SQLException
SQLExceptionint getInt(int columnIndex)
throws SQLException
SQLExceptionlong getLong(int columnIndex)
throws SQLException
SQLExceptionfloat getFloat(int columnIndex)
throws SQLException
SQLExceptiondouble getDouble(int columnIndex)
throws SQLException
SQLExceptionbyte[] getBytes(int columnIndex)
throws SQLException
SQLExceptionDate getDate(int columnIndex) throws SQLException
SQLExceptionTime getTime(int columnIndex) throws SQLException
SQLExceptionTimestamp getTimestamp(int columnIndex) throws SQLException
SQLExceptionInputStream getAsciiStream(int columnIndex) throws SQLException
SQLExceptionInputStream getBinaryStream(int columnIndex) throws SQLException
SQLExceptionString getString(String columnLabel) throws SQLException
SQLExceptionboolean getBoolean(String columnLabel) throws SQLException
SQLExceptionbyte getByte(String columnLabel) throws SQLException
SQLExceptionshort getShort(String columnLabel) throws SQLException
SQLExceptionint getInt(String columnLabel) throws SQLException
SQLExceptionlong getLong(String columnLabel) throws SQLException
SQLExceptionfloat getFloat(String columnLabel) throws SQLException
SQLExceptiondouble getDouble(String columnLabel) throws SQLException
SQLExceptionbyte[] getBytes(String columnLabel) throws SQLException
SQLExceptionDate getDate(String columnLabel) throws SQLException
SQLExceptionTime getTime(String columnLabel) throws SQLException
SQLExceptionTimestamp getTimestamp(String columnLabel) throws SQLException
SQLExceptionInputStream getAsciiStream(String columnLabel) throws SQLException
SQLExceptionInputStream getBinaryStream(String columnLabel) throws SQLException
SQLExceptionResultSetMetaData getMetaData() throws SQLException
SQLExceptionObject getObject(int columnIndex) throws SQLException
SQLExceptionObject getObject(String columnLabel) throws SQLException
SQLExceptionint findColumn(String columnLabel) throws SQLException
SQLExceptionReader getCharacterStream(int columnIndex) throws SQLException
SQLExceptionReader getCharacterStream(String columnLabel) throws SQLException
SQLExceptionBigDecimal getBigDecimal(int columnIndex) throws SQLException
SQLExceptionBigDecimal getBigDecimal(String columnLabel) throws SQLException
SQLExceptionboolean isBeforeFirst()
throws SQLException
SQLExceptionboolean isAfterLast()
throws SQLException
SQLExceptionboolean isFirst()
throws SQLException
SQLExceptionboolean isLast()
throws SQLException
SQLExceptionvoid beforeFirst()
throws SQLException
SQLExceptionvoid afterLast()
throws SQLException
SQLExceptionboolean first()
throws SQLException
SQLExceptionboolean last()
throws SQLException
SQLExceptionint getRow()
throws SQLException
SQLExceptionboolean absolute(int row)
throws SQLException
SQLExceptionboolean relative(int rows)
throws SQLException
SQLExceptionboolean previous()
throws SQLException
SQLExceptionvoid setFetchDirection(int direction)
throws SQLException
SQLExceptionint getFetchDirection()
throws SQLException
SQLExceptionvoid setFetchSize(int rows)
throws SQLException
SQLExceptionint getFetchSize()
throws SQLException
SQLExceptionint getType()
throws SQLException
SQLExceptionint getConcurrency()
throws SQLException
SQLExceptionboolean rowUpdated()
throws SQLException
SQLExceptionboolean rowInserted()
throws SQLException
SQLExceptionboolean rowDeleted()
throws SQLException
SQLExceptionvoid updateNull(int columnIndex)
throws SQLException
SQLExceptionvoid updateBoolean(int columnIndex,
boolean x)
throws SQLException
SQLExceptionvoid updateByte(int columnIndex,
byte x)
throws SQLException
SQLExceptionvoid updateShort(int columnIndex,
short x)
throws SQLException
SQLExceptionvoid updateInt(int columnIndex,
int x)
throws SQLException
SQLExceptionvoid updateLong(int columnIndex,
long x)
throws SQLException
SQLExceptionvoid updateFloat(int columnIndex,
float x)
throws SQLException
SQLExceptionvoid updateDouble(int columnIndex,
double x)
throws SQLException
SQLExceptionvoid updateBigDecimal(int columnIndex,
BigDecimal x)
throws SQLException
SQLExceptionvoid updateString(int columnIndex,
String x)
throws SQLException
SQLExceptionvoid updateBytes(int columnIndex,
byte[] x)
throws SQLException
SQLExceptionvoid updateDate(int columnIndex,
Date x)
throws SQLException
SQLExceptionvoid updateTime(int columnIndex,
Time x)
throws SQLException
SQLExceptionvoid updateTimestamp(int columnIndex,
Timestamp x)
throws SQLException
SQLExceptionvoid updateAsciiStream(int columnIndex,
InputStream x,
int length)
throws SQLException
SQLExceptionvoid updateBinaryStream(int columnIndex,
InputStream x,
int length)
throws SQLException
SQLExceptionvoid updateCharacterStream(int columnIndex,
Reader x,
int length)
throws SQLException
SQLExceptionvoid updateObject(int columnIndex,
Object x,
int scaleOrLength)
throws SQLException
SQLExceptionvoid updateObject(int columnIndex,
Object x)
throws SQLException
SQLExceptionvoid updateNull(String columnLabel) throws SQLException
SQLExceptionvoid updateBoolean(String columnLabel, boolean x) throws SQLException
SQLExceptionvoid updateByte(String columnLabel, byte x) throws SQLException
SQLExceptionvoid updateShort(String columnLabel, short x) throws SQLException
SQLExceptionvoid updateInt(String columnLabel, int x) throws SQLException
SQLExceptionvoid updateLong(String columnLabel, long x) throws SQLException
SQLExceptionvoid updateFloat(String columnLabel, float x) throws SQLException
SQLExceptionvoid updateDouble(String columnLabel, double x) throws SQLException
SQLExceptionvoid updateBigDecimal(String columnLabel, BigDecimal x) throws SQLException
SQLExceptionvoid updateString(String columnLabel, String x) throws SQLException
SQLExceptionvoid updateBytes(String columnLabel, byte[] x) throws SQLException
SQLExceptionvoid updateDate(String columnLabel, Date x) throws SQLException
SQLExceptionvoid updateTime(String columnLabel, Time x) throws SQLException
SQLExceptionvoid updateTimestamp(String columnLabel, Timestamp x) throws SQLException
SQLExceptionvoid updateAsciiStream(String columnLabel, InputStream x, int length) throws SQLException
SQLExceptionvoid updateBinaryStream(String columnLabel, InputStream x, int length) throws SQLException
SQLExceptionvoid updateCharacterStream(String columnLabel, Reader reader, int length) throws SQLException
SQLExceptionvoid updateObject(String columnLabel, Object x, int scaleOrLength) throws SQLException
SQLExceptionvoid updateObject(String columnLabel, Object x) throws SQLException
SQLExceptionvoid insertRow()
throws SQLException
SQLExceptionvoid updateRow()
throws SQLException
SQLExceptionvoid deleteRow()
throws SQLException
SQLExceptionvoid refreshRow()
throws SQLException
SQLExceptionvoid cancelRowUpdates()
throws SQLException
SQLExceptionvoid moveToInsertRow()
throws SQLException
SQLExceptionvoid moveToCurrentRow()
throws SQLException
SQLExceptionFWStatement getStatement() throws SQLException
SQLExceptionObject getObject(int columnIndex, Map<String,Class<?>> map) throws SQLException
SQLExceptionRef getRef(int columnIndex) throws SQLException
SQLExceptionBlob getBlob(int columnIndex) throws SQLException
SQLExceptionClob getClob(int columnIndex) throws SQLException
SQLExceptionArray getArray(int columnIndex) throws SQLException
SQLExceptionObject getObject(String columnLabel, Map<String,Class<?>> map) throws SQLException
SQLExceptionRef getRef(String columnLabel) throws SQLException
SQLExceptionBlob getBlob(String columnLabel) throws SQLException
SQLExceptionClob getClob(String columnLabel) throws SQLException
SQLExceptionArray getArray(String columnLabel) throws SQLException
SQLExceptionDate getDate(int columnIndex, Calendar cal) throws SQLException
SQLExceptionDate getDate(String columnLabel, Calendar cal) throws SQLException
SQLExceptionTime getTime(int columnIndex, Calendar cal) throws SQLException
SQLExceptionTime getTime(String columnLabel, Calendar cal) throws SQLException
SQLExceptionTimestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException
SQLExceptionTimestamp getTimestamp(String columnLabel, Calendar cal) throws SQLException
SQLExceptionURL getURL(int columnIndex) throws SQLException
SQLExceptionURL getURL(String columnLabel) throws SQLException
SQLExceptionvoid updateRef(int columnIndex,
Ref x)
throws SQLException
SQLExceptionvoid updateRef(String columnLabel, Ref x) throws SQLException
SQLExceptionvoid updateBlob(int columnIndex,
Blob x)
throws SQLException
SQLExceptionvoid updateBlob(String columnLabel, Blob x) throws SQLException
SQLExceptionvoid updateClob(int columnIndex,
Clob x)
throws SQLException
SQLExceptionvoid updateClob(String columnLabel, Clob x) throws SQLException
SQLExceptionvoid updateArray(int columnIndex,
Array x)
throws SQLException
SQLExceptionvoid updateArray(String columnLabel, Array x) throws SQLException
SQLExceptionRowId getRowId(int columnIndex) throws SQLException
SQLExceptionRowId getRowId(String columnLabel) throws SQLException
SQLExceptionvoid updateRowId(int columnIndex,
RowId x)
throws SQLException
SQLExceptionvoid updateRowId(String columnLabel, RowId x) throws SQLException
SQLExceptionint getHoldability()
throws SQLException
SQLExceptionboolean isClosed()
throws SQLException
SQLExceptionvoid updateNString(int columnIndex,
String nString)
throws SQLException
SQLExceptionvoid updateNString(String columnLabel, String nString) throws SQLException
SQLExceptionvoid updateNClob(int columnIndex,
NClob nClob)
throws SQLException
SQLExceptionvoid updateNClob(String columnLabel, NClob nClob) throws SQLException
SQLExceptionNClob getNClob(int columnIndex) throws SQLException
SQLExceptionNClob getNClob(String columnLabel) throws SQLException
SQLExceptionSQLXML getSQLXML(int columnIndex) throws SQLException
SQLExceptionSQLXML getSQLXML(String columnLabel) throws SQLException
SQLExceptionvoid updateSQLXML(int columnIndex,
SQLXML xmlObject)
throws SQLException
SQLExceptionvoid updateSQLXML(String columnLabel, SQLXML xmlObject) throws SQLException
SQLExceptionString getNString(int columnIndex) throws SQLException
SQLExceptionString getNString(String columnLabel) throws SQLException
SQLExceptionReader getNCharacterStream(int columnIndex) throws SQLException
SQLExceptionReader getNCharacterStream(String columnLabel) throws SQLException
SQLExceptionvoid updateNCharacterStream(int columnIndex,
Reader x,
long length)
throws SQLException
SQLExceptionvoid updateNCharacterStream(String columnLabel, Reader reader, long length) throws SQLException
SQLExceptionvoid updateAsciiStream(int columnIndex,
InputStream x,
long length)
throws SQLException
SQLExceptionvoid updateBinaryStream(int columnIndex,
InputStream x,
long length)
throws SQLException
SQLExceptionvoid updateCharacterStream(int columnIndex,
Reader x,
long length)
throws SQLException
SQLExceptionvoid updateAsciiStream(String columnLabel, InputStream x, long length) throws SQLException
SQLExceptionvoid updateBinaryStream(String columnLabel, InputStream x, long length) throws SQLException
SQLExceptionvoid updateCharacterStream(String columnLabel, Reader reader, long length) throws SQLException
SQLExceptionvoid updateBlob(int columnIndex,
InputStream inputStream,
long length)
throws SQLException
SQLExceptionvoid updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException
SQLExceptionvoid updateClob(int columnIndex,
Reader reader,
long length)
throws SQLException
SQLExceptionvoid updateClob(String columnLabel, Reader reader, long length) throws SQLException
SQLExceptionvoid updateNClob(int columnIndex,
Reader reader,
long length)
throws SQLException
SQLExceptionvoid updateNClob(String columnLabel, Reader reader, long length) throws SQLException
SQLExceptionvoid updateNCharacterStream(int columnIndex,
Reader x)
throws SQLException
SQLExceptionvoid updateNCharacterStream(String columnLabel, Reader reader) throws SQLException
SQLExceptionvoid updateAsciiStream(int columnIndex,
InputStream x)
throws SQLException
SQLExceptionvoid updateBinaryStream(int columnIndex,
InputStream x)
throws SQLException
SQLExceptionvoid updateCharacterStream(int columnIndex,
Reader x)
throws SQLException
SQLExceptionvoid updateAsciiStream(String columnLabel, InputStream x) throws SQLException
SQLExceptionvoid updateBinaryStream(String columnLabel, InputStream x) throws SQLException
SQLExceptionvoid updateCharacterStream(String columnLabel, Reader reader) throws SQLException
SQLExceptionvoid updateBlob(int columnIndex,
InputStream inputStream)
throws SQLException
SQLExceptionvoid updateBlob(String columnLabel, InputStream inputStream) throws SQLException
SQLExceptionvoid updateClob(int columnIndex,
Reader reader)
throws SQLException
SQLExceptionvoid updateClob(String columnLabel, Reader reader) throws SQLException
SQLExceptionvoid updateNClob(int columnIndex,
Reader reader)
throws SQLException
SQLExceptionvoid updateNClob(String columnLabel, Reader reader) throws SQLException
SQLException<T> T getObject(int columnIndex,
Class<T> type)
throws SQLException
SQLException<T> T getObject(String columnLabel, Class<T> type) throws SQLException
SQLExceptionvoid updateObject(int columnIndex,
Object x,
SQLType targetSqlType,
int scaleOrLength)
throws SQLException
SQLExceptionvoid updateObject(String columnLabel, Object x, SQLType targetSqlType, int scaleOrLength) throws SQLException
SQLExceptionvoid updateObject(int columnIndex,
Object x,
SQLType targetSqlType)
throws SQLException
SQLExceptionvoid updateObject(String columnLabel, Object x, SQLType targetSqlType) throws SQLException
SQLExceptionHandywedge ver 0.10.0. Copyright (c) 2019 Handywedge Co.,Ltd.