public abstract class AbstractResultSet extends Object implements ResultSet
CLOSE_CURSORS_AT_COMMIT, CONCUR_READ_ONLY, CONCUR_UPDATABLE, FETCH_FORWARD, FETCH_REVERSE, FETCH_UNKNOWN, HOLD_CURSORS_OVER_COMMIT, TYPE_FORWARD_ONLY, TYPE_SCROLL_INSENSITIVE, TYPE_SCROLL_SENSITIVE| Constructor and Description |
|---|
AbstractResultSet() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
absolute(int row) |
void |
afterLast() |
void |
beforeFirst() |
void |
cancelRowUpdates() |
void |
deleteRow() |
boolean |
first() |
Array |
getArray(int columnIndex) |
Array |
getArray(String columnLabel) |
InputStream |
getAsciiStream(String columnLabel) |
BigDecimal |
getBigDecimal(int columnIndex,
int scale) |
BigDecimal |
getBigDecimal(String columnLabel) |
BigDecimal |
getBigDecimal(String columnLabel,
int scale) |
InputStream |
getBinaryStream(String columnLabel) |
Blob |
getBlob(int columnIndex) |
Blob |
getBlob(String columnLabel) |
boolean |
getBoolean(String columnLabel) |
byte |
getByte(String columnLabel) |
byte[] |
getBytes(String columnLabel) |
Reader |
getCharacterStream(String columnLabel) |
Clob |
getClob(int columnIndex) |
Clob |
getClob(String columnLabel) |
String |
getCursorName() |
Date |
getDate(String columnLabel) |
Date |
getDate(String columnLabel,
Calendar cal) |
double |
getDouble(String columnLabel) |
float |
getFloat(String columnLabel) |
int |
getInt(String columnLabel) |
long |
getLong(String columnLabel) |
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,
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(String columnLabel) |
SQLXML |
getSQLXML(int columnIndex) |
SQLXML |
getSQLXML(String columnLabel) |
String |
getString(String columnLabel) |
Time |
getTime(String columnLabel) |
Time |
getTime(String columnLabel,
Calendar cal) |
Timestamp |
getTimestamp(String columnLabel) |
Timestamp |
getTimestamp(String columnLabel,
Calendar cal) |
InputStream |
getUnicodeStream(int columnIndex) |
InputStream |
getUnicodeStream(String columnLabel) |
URL |
getURL(int columnIndex) |
URL |
getURL(String columnLabel) |
void |
insertRow() |
boolean |
isAfterLast() |
boolean |
isBeforeFirst() |
boolean |
isFirst() |
boolean |
isLast() |
boolean |
isWrapperFor(Class<?> iface) |
boolean |
last() |
void |
moveToCurrentRow() |
void |
moveToInsertRow() |
boolean |
previous() |
void |
refreshRow() |
boolean |
relative(int rows) |
boolean |
rowDeleted() |
boolean |
rowInserted() |
boolean |
rowUpdated() |
<T> T |
unwrap(Class<T> iface) |
void |
updateArray(int columnIndex,
Array arr) |
void |
updateArray(String columnLabel,
Array arr) |
void |
updateAsciiStream(int columnIndex,
InputStream in) |
void |
updateAsciiStream(int columnIndex,
InputStream in,
int length) |
void |
updateAsciiStream(int columnIndex,
InputStream in,
long length) |
void |
updateAsciiStream(String columnLabel,
InputStream in) |
void |
updateAsciiStream(String columnLabel,
InputStream in,
int length) |
void |
updateAsciiStream(String columnLabel,
InputStream in,
long length) |
void |
updateBigDecimal(int columnIndex,
BigDecimal bd) |
void |
updateBigDecimal(String columnLabel,
BigDecimal bd) |
void |
updateBinaryStream(int columnIndex,
InputStream in) |
void |
updateBinaryStream(int columnIndex,
InputStream in,
int length) |
void |
updateBinaryStream(int columnIndex,
InputStream in,
long length) |
void |
updateBinaryStream(String columnLabel,
InputStream in) |
void |
updateBinaryStream(String columnLabel,
InputStream in,
int length) |
void |
updateBinaryStream(String columnLabel,
InputStream in,
long length) |
void |
updateBlob(int columnIndex,
Blob blob) |
void |
updateBlob(int columnIndex,
InputStream inputStream) |
void |
updateBlob(int columnIndex,
InputStream inputStream,
long length) |
void |
updateBlob(String columnLabel,
Blob blob) |
void |
updateBlob(String columnLabel,
InputStream inputStream) |
void |
updateBlob(String columnLabel,
InputStream inputStream,
long length) |
void |
updateBoolean(int columnIndex,
boolean b) |
void |
updateBoolean(String columnLabel,
boolean b) |
void |
updateByte(int columnIndex,
byte b) |
void |
updateByte(String columnLabel,
byte b) |
void |
updateBytes(int columnIndex,
byte[] bs) |
void |
updateBytes(String columnLabel,
byte[] bs) |
void |
updateCharacterStream(int columnIndex,
Reader r) |
void |
updateCharacterStream(int columnIndex,
Reader r,
int length) |
void |
updateCharacterStream(int columnIndex,
Reader r,
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 clob) |
void |
updateClob(int columnIndex,
Reader reader) |
void |
updateClob(int columnIndex,
Reader reader,
long length) |
void |
updateClob(String columnLabel,
Clob clob) |
void |
updateClob(String columnLabel,
Reader reader) |
void |
updateClob(String columnLabel,
Reader reader,
long length) |
void |
updateDate(int columnIndex,
Date d) |
void |
updateDate(String columnLabel,
Date d) |
void |
updateDouble(int columnIndex,
double d) |
void |
updateDouble(String columnLabel,
double d) |
void |
updateFloat(int columnIndex,
float f) |
void |
updateFloat(String columnLabel,
float f) |
void |
updateInt(int columnIndex,
int i) |
void |
updateInt(String columnLabel,
int i) |
void |
updateLong(int columnIndex,
long l) |
void |
updateLong(String columnLabel,
long l) |
void |
updateNCharacterStream(int columnIndex,
Reader r) |
void |
updateNCharacterStream(int columnIndex,
Reader reader,
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(String columnLabel,
Object x) |
void |
updateObject(String columnLabel,
Object x,
int scaleOrLength) |
void |
updateRef(int columnIndex,
Ref ref) |
void |
updateRef(String columnLabel,
Ref ref) |
void |
updateRow() |
void |
updateRowId(int columnIndex,
RowId id) |
void |
updateRowId(String columnLabel,
RowId id) |
void |
updateShort(int columnIndex,
short s) |
void |
updateShort(String columnLabel,
short s) |
void |
updateSQLXML(int columnIndex,
SQLXML xmlObject) |
void |
updateSQLXML(String columnLabel,
SQLXML xmlObject) |
void |
updateString(int columnIndex,
String s) |
void |
updateString(String columnLabel,
String s) |
void |
updateTime(int columnIndex,
Time t) |
void |
updateTime(String columnLabel,
Time t) |
void |
updateTimestamp(int columnIndex,
Timestamp ts) |
void |
updateTimestamp(String columnLabel,
Timestamp ts) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitclearWarnings, close, findColumn, getAsciiStream, getBigDecimal, getBinaryStream, getBoolean, getByte, getBytes, getCharacterStream, getConcurrency, getDate, getDate, getDouble, getFetchDirection, getFetchSize, getFloat, getHoldability, getInt, getLong, getMetaData, getObject, getObject, getShort, getStatement, getString, getTime, getTime, getTimestamp, getTimestamp, getType, getWarnings, isClosed, next, setFetchDirection, setFetchSize, updateObject, updateObject, updateObject, updateObject, wasNullpublic BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException
getBigDecimal in interface ResultSetSQLExceptionpublic InputStream getUnicodeStream(int columnIndex) throws SQLException
getUnicodeStream in interface ResultSetSQLExceptionpublic String getCursorName() throws SQLException
getCursorName in interface ResultSetSQLExceptionpublic String getString(String columnLabel) throws SQLException
getString in interface ResultSetSQLExceptionpublic boolean getBoolean(String columnLabel) throws SQLException
getBoolean in interface ResultSetSQLExceptionpublic byte getByte(String columnLabel) throws SQLException
getByte in interface ResultSetSQLExceptionpublic short getShort(String columnLabel) throws SQLException
getShort in interface ResultSetSQLExceptionpublic int getInt(String columnLabel) throws SQLException
getInt in interface ResultSetSQLExceptionpublic long getLong(String columnLabel) throws SQLException
getLong in interface ResultSetSQLExceptionpublic float getFloat(String columnLabel) throws SQLException
getFloat in interface ResultSetSQLExceptionpublic double getDouble(String columnLabel) throws SQLException
getDouble in interface ResultSetSQLExceptionpublic BigDecimal getBigDecimal(String columnLabel, int scale) throws SQLException
getBigDecimal in interface ResultSetSQLExceptionpublic byte[] getBytes(String columnLabel) throws SQLException
getBytes in interface ResultSetSQLExceptionpublic Date getDate(String columnLabel) throws SQLException
getDate in interface ResultSetSQLExceptionpublic Time getTime(String columnLabel) throws SQLException
getTime in interface ResultSetSQLExceptionpublic Timestamp getTimestamp(String columnLabel) throws SQLException
getTimestamp in interface ResultSetSQLExceptionpublic InputStream getAsciiStream(String columnLabel) throws SQLException
getAsciiStream in interface ResultSetSQLExceptionpublic InputStream getUnicodeStream(String columnLabel) throws SQLException
getUnicodeStream in interface ResultSetSQLExceptionpublic InputStream getBinaryStream(String columnLabel) throws SQLException
getBinaryStream in interface ResultSetSQLExceptionpublic Object getObject(String columnLabel) throws SQLException
getObject in interface ResultSetSQLExceptionpublic Reader getCharacterStream(String columnLabel) throws SQLException
getCharacterStream in interface ResultSetSQLExceptionpublic BigDecimal getBigDecimal(String columnLabel) throws SQLException
getBigDecimal in interface ResultSetSQLExceptionpublic boolean isBeforeFirst()
throws SQLException
isBeforeFirst in interface ResultSetSQLExceptionpublic boolean isAfterLast()
throws SQLException
isAfterLast in interface ResultSetSQLExceptionpublic boolean isFirst()
throws SQLException
isFirst in interface ResultSetSQLExceptionpublic boolean isLast()
throws SQLException
isLast in interface ResultSetSQLExceptionpublic void beforeFirst()
throws SQLException
beforeFirst in interface ResultSetSQLExceptionpublic void afterLast()
throws SQLException
afterLast in interface ResultSetSQLExceptionpublic boolean first()
throws SQLException
first in interface ResultSetSQLExceptionpublic boolean last()
throws SQLException
last in interface ResultSetSQLExceptionpublic int getRow()
throws SQLException
getRow in interface ResultSetSQLExceptionpublic boolean absolute(int row)
throws SQLException
absolute in interface ResultSetSQLExceptionpublic boolean relative(int rows)
throws SQLException
relative in interface ResultSetSQLExceptionpublic boolean previous()
throws SQLException
previous in interface ResultSetSQLExceptionpublic boolean rowUpdated()
throws SQLException
rowUpdated in interface ResultSetSQLExceptionpublic boolean rowInserted()
throws SQLException
rowInserted in interface ResultSetSQLExceptionpublic boolean rowDeleted()
throws SQLException
rowDeleted in interface ResultSetSQLExceptionpublic void updateNull(int columnIndex)
throws SQLException
updateNull in interface ResultSetSQLExceptionpublic void updateBoolean(int columnIndex,
boolean b)
throws SQLException
updateBoolean in interface ResultSetSQLExceptionpublic void updateByte(int columnIndex,
byte b)
throws SQLException
updateByte in interface ResultSetSQLExceptionpublic void updateShort(int columnIndex,
short s)
throws SQLException
updateShort in interface ResultSetSQLExceptionpublic void updateInt(int columnIndex,
int i)
throws SQLException
updateInt in interface ResultSetSQLExceptionpublic void updateLong(int columnIndex,
long l)
throws SQLException
updateLong in interface ResultSetSQLExceptionpublic void updateFloat(int columnIndex,
float f)
throws SQLException
updateFloat in interface ResultSetSQLExceptionpublic void updateDouble(int columnIndex,
double d)
throws SQLException
updateDouble in interface ResultSetSQLExceptionpublic void updateBigDecimal(int columnIndex,
BigDecimal bd)
throws SQLException
updateBigDecimal in interface ResultSetSQLExceptionpublic void updateString(int columnIndex,
String s)
throws SQLException
updateString in interface ResultSetSQLExceptionpublic void updateBytes(int columnIndex,
byte[] bs)
throws SQLException
updateBytes in interface ResultSetSQLExceptionpublic void updateDate(int columnIndex,
Date d)
throws SQLException
updateDate in interface ResultSetSQLExceptionpublic void updateTime(int columnIndex,
Time t)
throws SQLException
updateTime in interface ResultSetSQLExceptionpublic void updateTimestamp(int columnIndex,
Timestamp ts)
throws SQLException
updateTimestamp in interface ResultSetSQLExceptionpublic void updateAsciiStream(int columnIndex,
InputStream in,
int length)
throws SQLException
updateAsciiStream in interface ResultSetSQLExceptionpublic void updateBinaryStream(int columnIndex,
InputStream in,
int length)
throws SQLException
updateBinaryStream in interface ResultSetSQLExceptionpublic void updateCharacterStream(int columnIndex,
Reader r,
int length)
throws SQLException
updateCharacterStream in interface ResultSetSQLExceptionpublic void updateObject(int columnIndex,
Object x,
int scaleOrLength)
throws SQLException
updateObject in interface ResultSetSQLExceptionpublic void updateObject(int columnIndex,
Object x)
throws SQLException
updateObject in interface ResultSetSQLExceptionpublic void updateNull(String columnLabel) throws SQLException
updateNull in interface ResultSetSQLExceptionpublic void updateBoolean(String columnLabel, boolean b) throws SQLException
updateBoolean in interface ResultSetSQLExceptionpublic void updateByte(String columnLabel, byte b) throws SQLException
updateByte in interface ResultSetSQLExceptionpublic void updateShort(String columnLabel, short s) throws SQLException
updateShort in interface ResultSetSQLExceptionpublic void updateInt(String columnLabel, int i) throws SQLException
updateInt in interface ResultSetSQLExceptionpublic void updateLong(String columnLabel, long l) throws SQLException
updateLong in interface ResultSetSQLExceptionpublic void updateFloat(String columnLabel, float f) throws SQLException
updateFloat in interface ResultSetSQLExceptionpublic void updateDouble(String columnLabel, double d) throws SQLException
updateDouble in interface ResultSetSQLExceptionpublic void updateBigDecimal(String columnLabel, BigDecimal bd) throws SQLException
updateBigDecimal in interface ResultSetSQLExceptionpublic void updateString(String columnLabel, String s) throws SQLException
updateString in interface ResultSetSQLExceptionpublic void updateBytes(String columnLabel, byte[] bs) throws SQLException
updateBytes in interface ResultSetSQLExceptionpublic void updateDate(String columnLabel, Date d) throws SQLException
updateDate in interface ResultSetSQLExceptionpublic void updateTime(String columnLabel, Time t) throws SQLException
updateTime in interface ResultSetSQLExceptionpublic void updateTimestamp(String columnLabel, Timestamp ts) throws SQLException
updateTimestamp in interface ResultSetSQLExceptionpublic void updateAsciiStream(String columnLabel, InputStream in, int length) throws SQLException
updateAsciiStream in interface ResultSetSQLExceptionpublic void updateBinaryStream(String columnLabel, InputStream in, int length) throws SQLException
updateBinaryStream in interface ResultSetSQLExceptionpublic void updateCharacterStream(String columnLabel, Reader reader, int length) throws SQLException
updateCharacterStream in interface ResultSetSQLExceptionpublic void updateObject(String columnLabel, Object x, int scaleOrLength) throws SQLException
updateObject in interface ResultSetSQLExceptionpublic void updateObject(String columnLabel, Object x) throws SQLException
updateObject in interface ResultSetSQLExceptionpublic void insertRow()
throws SQLException
insertRow in interface ResultSetSQLExceptionpublic void updateRow()
throws SQLException
updateRow in interface ResultSetSQLExceptionpublic void deleteRow()
throws SQLException
deleteRow in interface ResultSetSQLExceptionpublic void refreshRow()
throws SQLException
refreshRow in interface ResultSetSQLExceptionpublic void cancelRowUpdates()
throws SQLException
cancelRowUpdates in interface ResultSetSQLExceptionpublic void moveToInsertRow()
throws SQLException
moveToInsertRow in interface ResultSetSQLExceptionpublic void moveToCurrentRow()
throws SQLException
moveToCurrentRow in interface ResultSetSQLExceptionpublic Object getObject(int columnIndex, Map<String,Class<?>> map) throws SQLException
getObject in interface ResultSetSQLExceptionpublic Ref getRef(int columnIndex) throws SQLException
getRef in interface ResultSetSQLExceptionpublic Blob getBlob(int columnIndex) throws SQLException
getBlob in interface ResultSetSQLExceptionpublic Clob getClob(int columnIndex) throws SQLException
getClob in interface ResultSetSQLExceptionpublic Array getArray(int columnIndex) throws SQLException
getArray in interface ResultSetSQLExceptionpublic Object getObject(String columnLabel, Map<String,Class<?>> map) throws SQLException
getObject in interface ResultSetSQLExceptionpublic Ref getRef(String columnLabel) throws SQLException
getRef in interface ResultSetSQLExceptionpublic Blob getBlob(String columnLabel) throws SQLException
getBlob in interface ResultSetSQLExceptionpublic Clob getClob(String columnLabel) throws SQLException
getClob in interface ResultSetSQLExceptionpublic Array getArray(String columnLabel) throws SQLException
getArray in interface ResultSetSQLExceptionpublic Date getDate(String columnLabel, Calendar cal) throws SQLException
getDate in interface ResultSetSQLExceptionpublic Time getTime(String columnLabel, Calendar cal) throws SQLException
getTime in interface ResultSetSQLExceptionpublic Timestamp getTimestamp(String columnLabel, Calendar cal) throws SQLException
getTimestamp in interface ResultSetSQLExceptionpublic URL getURL(int columnIndex) throws SQLException
getURL in interface ResultSetSQLExceptionpublic URL getURL(String columnLabel) throws SQLException
getURL in interface ResultSetSQLExceptionpublic void updateRef(int columnIndex,
Ref ref)
throws SQLException
updateRef in interface ResultSetSQLExceptionpublic void updateRef(String columnLabel, Ref ref) throws SQLException
updateRef in interface ResultSetSQLExceptionpublic void updateBlob(int columnIndex,
Blob blob)
throws SQLException
updateBlob in interface ResultSetSQLExceptionpublic void updateBlob(String columnLabel, Blob blob) throws SQLException
updateBlob in interface ResultSetSQLExceptionpublic void updateClob(int columnIndex,
Clob clob)
throws SQLException
updateClob in interface ResultSetSQLExceptionpublic void updateClob(String columnLabel, Clob clob) throws SQLException
updateClob in interface ResultSetSQLExceptionpublic void updateArray(int columnIndex,
Array arr)
throws SQLException
updateArray in interface ResultSetSQLExceptionpublic void updateArray(String columnLabel, Array arr) throws SQLException
updateArray in interface ResultSetSQLExceptionpublic RowId getRowId(int columnIndex) throws SQLException
getRowId in interface ResultSetSQLExceptionpublic RowId getRowId(String columnLabel) throws SQLException
getRowId in interface ResultSetSQLExceptionpublic void updateRowId(int columnIndex,
RowId id)
throws SQLException
updateRowId in interface ResultSetSQLExceptionpublic void updateRowId(String columnLabel, RowId id) throws SQLException
updateRowId in interface ResultSetSQLExceptionpublic void updateNString(int columnIndex,
String nString)
throws SQLException
updateNString in interface ResultSetSQLExceptionpublic void updateNString(String columnLabel, String nString) throws SQLException
updateNString in interface ResultSetSQLExceptionpublic void updateNClob(int columnIndex,
NClob nClob)
throws SQLException
updateNClob in interface ResultSetSQLExceptionpublic void updateNClob(String columnLabel, NClob nClob) throws SQLException
updateNClob in interface ResultSetSQLExceptionpublic NClob getNClob(int columnIndex) throws SQLException
getNClob in interface ResultSetSQLExceptionpublic NClob getNClob(String columnLabel) throws SQLException
getNClob in interface ResultSetSQLExceptionpublic SQLXML getSQLXML(int columnIndex) throws SQLException
getSQLXML in interface ResultSetSQLExceptionpublic SQLXML getSQLXML(String columnLabel) throws SQLException
getSQLXML in interface ResultSetSQLExceptionpublic void updateSQLXML(int columnIndex,
SQLXML xmlObject)
throws SQLException
updateSQLXML in interface ResultSetSQLExceptionpublic void updateSQLXML(String columnLabel, SQLXML xmlObject) throws SQLException
updateSQLXML in interface ResultSetSQLExceptionpublic String getNString(int columnIndex) throws SQLException
getNString in interface ResultSetSQLExceptionpublic String getNString(String columnLabel) throws SQLException
getNString in interface ResultSetSQLExceptionpublic Reader getNCharacterStream(int columnIndex) throws SQLException
getNCharacterStream in interface ResultSetSQLExceptionpublic Reader getNCharacterStream(String columnLabel) throws SQLException
getNCharacterStream in interface ResultSetSQLExceptionpublic void updateNCharacterStream(int columnIndex,
Reader reader,
long length)
throws SQLException
updateNCharacterStream in interface ResultSetSQLExceptionpublic void updateNCharacterStream(String columnLabel, Reader reader, long length) throws SQLException
updateNCharacterStream in interface ResultSetSQLExceptionpublic void updateAsciiStream(int columnIndex,
InputStream in,
long length)
throws SQLException
updateAsciiStream in interface ResultSetSQLExceptionpublic void updateBinaryStream(int columnIndex,
InputStream in,
long length)
throws SQLException
updateBinaryStream in interface ResultSetSQLExceptionpublic void updateCharacterStream(int columnIndex,
Reader r,
long length)
throws SQLException
updateCharacterStream in interface ResultSetSQLExceptionpublic void updateAsciiStream(String columnLabel, InputStream in, long length) throws SQLException
updateAsciiStream in interface ResultSetSQLExceptionpublic void updateBinaryStream(String columnLabel, InputStream in, long length) throws SQLException
updateBinaryStream in interface ResultSetSQLExceptionpublic void updateCharacterStream(String columnLabel, Reader reader, long length) throws SQLException
updateCharacterStream in interface ResultSetSQLExceptionpublic void updateBlob(int columnIndex,
InputStream inputStream,
long length)
throws SQLException
updateBlob in interface ResultSetSQLExceptionpublic void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException
updateBlob in interface ResultSetSQLExceptionpublic void updateClob(int columnIndex,
Reader reader,
long length)
throws SQLException
updateClob in interface ResultSetSQLExceptionpublic void updateClob(String columnLabel, Reader reader, long length) throws SQLException
updateClob in interface ResultSetSQLExceptionpublic void updateNClob(int columnIndex,
Reader reader,
long length)
throws SQLException
updateNClob in interface ResultSetSQLExceptionpublic void updateNClob(String columnLabel, Reader reader, long length) throws SQLException
updateNClob in interface ResultSetSQLExceptionpublic void updateNCharacterStream(int columnIndex,
Reader r)
throws SQLException
updateNCharacterStream in interface ResultSetSQLExceptionpublic void updateNCharacterStream(String columnLabel, Reader reader) throws SQLException
updateNCharacterStream in interface ResultSetSQLExceptionpublic void updateAsciiStream(int columnIndex,
InputStream in)
throws SQLException
updateAsciiStream in interface ResultSetSQLExceptionpublic void updateBinaryStream(int columnIndex,
InputStream in)
throws SQLException
updateBinaryStream in interface ResultSetSQLExceptionpublic void updateCharacterStream(int columnIndex,
Reader r)
throws SQLException
updateCharacterStream in interface ResultSetSQLExceptionpublic void updateAsciiStream(String columnLabel, InputStream in) throws SQLException
updateAsciiStream in interface ResultSetSQLExceptionpublic void updateBinaryStream(String columnLabel, InputStream in) throws SQLException
updateBinaryStream in interface ResultSetSQLExceptionpublic void updateCharacterStream(String columnLabel, Reader reader) throws SQLException
updateCharacterStream in interface ResultSetSQLExceptionpublic void updateBlob(int columnIndex,
InputStream inputStream)
throws SQLException
updateBlob in interface ResultSetSQLExceptionpublic void updateBlob(String columnLabel, InputStream inputStream) throws SQLException
updateBlob in interface ResultSetSQLExceptionpublic void updateClob(int columnIndex,
Reader reader)
throws SQLException
updateClob in interface ResultSetSQLExceptionpublic void updateClob(String columnLabel, Reader reader) throws SQLException
updateClob in interface ResultSetSQLExceptionpublic void updateNClob(int columnIndex,
Reader reader)
throws SQLException
updateNClob in interface ResultSetSQLExceptionpublic void updateNClob(String columnLabel, Reader reader) throws SQLException
updateNClob in interface ResultSetSQLExceptionpublic <T> T getObject(String columnLabel, Class<T> type) throws SQLException
getObject in interface ResultSetSQLExceptionpublic <T> T unwrap(Class<T> iface) throws SQLException
unwrap in interface WrapperSQLExceptionpublic boolean isWrapperFor(Class<?> iface) throws SQLException
isWrapperFor in interface WrapperSQLExceptionCopyright © 2020–2021. All rights reserved.