Module org.tquadrat.foundation.sql
Class ResultSetWrapper
java.lang.Object
org.tquadrat.foundation.sql.internal.ResultSetWrapper
- All Implemented Interfaces:
AutoCloseable
,ResultSet
,Wrapper
- Direct Known Subclasses:
ResultSetSpliterator.InternalResultSet
@ClassVersion(sourceVersion="$Id: ResultSetWrapper.java 1020 2022-02-27 21:26:03Z tquadrat $")
@API(status=INTERNAL,
since="0.0.1")
public abstract class ResultSetWrapper
extends Object
implements ResultSet
A wrapper for a result set that restricts the call to some methods.
The operations that would move the cursor will throw an
UnsupportedOperationException
:
absolute(int)
afterLast()
beforeFirst()
first()
last()
moveToCurrentRow()
moveToInsertRow()
next()
previous()
relative(int)
as well as the following methods:
- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: ResultSetWrapper.java 1020 2022-02-27 21:26:03Z tquadrat $
- Since:
- 0.0.1
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.sql.internal.ResultSetWrapper"
-
Field Summary
FieldsFields inherited from interface java.sql.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 Summary
ConstructorsModifierConstructorDescriptionprotected
ResultSetWrapper
(ResultSet instance) Creates a newResultSetWrapper
instance. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
absolute
(int row) final void
final void
final void
final void
final void
close()
final void
final int
findColumn
(String columnLabel) final boolean
first()
final Array
getArray
(int columnIndex) final Array
final InputStream
getAsciiStream
(int columnIndex) final InputStream
getAsciiStream
(String columnLabel) final BigDecimal
getBigDecimal
(int columnIndex) final BigDecimal
getBigDecimal
(int columnIndex, int scale) Deprecated.final BigDecimal
getBigDecimal
(String columnLabel) final BigDecimal
getBigDecimal
(String columnLabel, int scale) Deprecated.final InputStream
getBinaryStream
(int columnIndex) final InputStream
getBinaryStream
(String columnLabel) final Blob
getBlob
(int columnIndex) final Blob
final boolean
getBoolean
(int columnIndex) final boolean
getBoolean
(String columnLabel) final byte
getByte
(int columnIndex) final byte
final byte[]
getBytes
(int columnIndex) final byte[]
final Reader
getCharacterStream
(int columnIndex) final Reader
getCharacterStream
(String columnLabel) final Clob
getClob
(int columnIndex) final Clob
final int
final String
final Date
getDate
(int columnIndex) final Date
final Date
final Date
final double
getDouble
(int columnIndex) final double
final int
final int
final float
getFloat
(int columnIndex) final float
final int
final int
getInt
(int columnIndex) final int
final long
getLong
(int columnIndex) final long
final ResultSetMetaData
final Reader
getNCharacterStream
(int columnIndex) final Reader
getNCharacterStream
(String columnLabel) final NClob
getNClob
(int columnIndex) final NClob
final String
getNString
(int columnIndex) final String
getNString
(String columnLabel) final Object
getObject
(int columnIndex) final <T> T
final Object
final Object
final <T> T
final Object
final Ref
getRef
(int columnIndex) final Ref
final int
getRow()
final RowId
getRowId
(int columnIndex) final RowId
final short
getShort
(int columnIndex) final short
final SQLXML
getSQLXML
(int columnIndex) final SQLXML
final Statement
final String
getString
(int columnIndex) final String
final Time
getTime
(int columnIndex) final Time
final Time
final Time
final Timestamp
getTimestamp
(int columnIndex) final Timestamp
getTimestamp
(int columnIndex, Calendar cal) final Timestamp
getTimestamp
(String columnLabel) final Timestamp
getTimestamp
(String columnLabel, Calendar cal) final int
getType()
final InputStream
getUnicodeStream
(int columnIndex) Deprecated.final InputStream
getUnicodeStream
(String columnLabel) Deprecated.final URL
getURL
(int columnIndex) final URL
final SQLWarning
final void
final boolean
final boolean
final boolean
isClosed()
final boolean
isFirst()
final boolean
isLast()
final boolean
isWrapperFor
(Class<?> iface) final boolean
last()
final void
final void
final boolean
next()
final boolean
previous()
final void
final boolean
relative
(int rows) final boolean
final boolean
final boolean
final void
setFetchDirection
(int direction) final void
setFetchSize
(int rows) final <T> T
final void
updateArray
(int columnIndex, Array x) final void
updateArray
(String columnLabel, Array x) final void
updateAsciiStream
(int columnIndex, InputStream x) final void
updateAsciiStream
(int columnIndex, InputStream x, int length) final void
updateAsciiStream
(int columnIndex, InputStream x, long length) final void
updateAsciiStream
(String columnLabel, InputStream x) final void
updateAsciiStream
(String columnLabel, InputStream x, int length) final void
updateAsciiStream
(String columnLabel, InputStream x, long length) final void
updateBigDecimal
(int columnIndex, BigDecimal x) final void
updateBigDecimal
(String columnLabel, BigDecimal x) final void
updateBinaryStream
(int columnIndex, InputStream x) final void
updateBinaryStream
(int columnIndex, InputStream x, int length) final void
updateBinaryStream
(int columnIndex, InputStream x, long length) final void
updateBinaryStream
(String columnLabel, InputStream x) final void
updateBinaryStream
(String columnLabel, InputStream x, int length) final void
updateBinaryStream
(String columnLabel, InputStream x, long length) final void
updateBlob
(int columnIndex, InputStream inputStream) final void
updateBlob
(int columnIndex, InputStream inputStream, long length) final void
updateBlob
(int columnIndex, Blob x) final void
updateBlob
(String columnLabel, InputStream inputStream) final void
updateBlob
(String columnLabel, InputStream inputStream, long length) final void
updateBlob
(String columnLabel, Blob x) final void
updateBoolean
(int columnIndex, boolean x) final void
updateBoolean
(String columnLabel, boolean x) final void
updateByte
(int columnIndex, byte x) final void
updateByte
(String columnLabel, byte x) final void
updateBytes
(int columnIndex, byte[] x) final void
updateBytes
(String columnLabel, byte[] x) final void
updateCharacterStream
(int columnIndex, Reader x) final void
updateCharacterStream
(int columnIndex, Reader x, int length) final void
updateCharacterStream
(int columnIndex, Reader x, long length) final void
updateCharacterStream
(String columnLabel, Reader reader) final void
updateCharacterStream
(String columnLabel, Reader reader, int length) final void
updateCharacterStream
(String columnLabel, Reader reader, long length) final void
updateClob
(int columnIndex, Reader reader) final void
updateClob
(int columnIndex, Reader reader, long length) final void
updateClob
(int columnIndex, Clob x) final void
updateClob
(String columnLabel, Reader reader) final void
updateClob
(String columnLabel, Reader reader, long length) final void
updateClob
(String columnLabel, Clob x) final void
updateDate
(int columnIndex, Date x) final void
updateDate
(String columnLabel, Date x) final void
updateDouble
(int columnIndex, double x) final void
updateDouble
(String columnLabel, double x) final void
updateFloat
(int columnIndex, float x) final void
updateFloat
(String columnLabel, float x) final void
updateInt
(int columnIndex, int x) final void
final void
updateLong
(int columnIndex, long x) final void
updateLong
(String columnLabel, long x) final void
updateNCharacterStream
(int columnIndex, Reader x) final void
updateNCharacterStream
(int columnIndex, Reader x, long length) final void
updateNCharacterStream
(String columnLabel, Reader reader) final void
updateNCharacterStream
(String columnLabel, Reader reader, long length) final void
updateNClob
(int columnIndex, Reader reader) final void
updateNClob
(int columnIndex, Reader reader, long length) final void
updateNClob
(int columnIndex, NClob nClob) final void
updateNClob
(String columnLabel, Reader reader) final void
updateNClob
(String columnLabel, Reader reader, long length) final void
updateNClob
(String columnLabel, NClob nClob) final void
updateNString
(int columnIndex, String nString) final void
updateNString
(String columnLabel, String nString) final void
updateNull
(int columnIndex) final void
updateNull
(String columnLabel) final void
updateObject
(int columnIndex, Object x) final void
updateObject
(int columnIndex, Object x, int scaleOrLength) final void
updateObject
(int columnIndex, Object x, SQLType targetSqlType) final void
updateObject
(int columnIndex, Object x, SQLType targetSqlType, int scaleOrLength) final void
updateObject
(String columnLabel, Object x) final void
updateObject
(String columnLabel, Object x, int scaleOrLength) final void
updateObject
(String columnLabel, Object x, SQLType targetSqlType) final void
updateObject
(String columnLabel, Object x, SQLType targetSqlType, int scaleOrLength) final void
final void
final void
final void
updateRowId
(int columnIndex, RowId x) final void
updateRowId
(String columnLabel, RowId x) final void
updateShort
(int columnIndex, short x) final void
updateShort
(String columnLabel, short x) final void
updateSQLXML
(int columnIndex, SQLXML xmlObject) final void
updateSQLXML
(String columnLabel, SQLXML xmlObject) final void
updateString
(int columnIndex, String x) final void
updateString
(String columnLabel, String x) final void
updateTime
(int columnIndex, Time x) final void
updateTime
(String columnLabel, Time x) final void
updateTimestamp
(int columnIndex, Timestamp x) final void
updateTimestamp
(String columnLabel, Timestamp x) final boolean
wasNull()
-
Field Details
-
m_Instance
The wrappedResultSet
instance.
-
-
Constructor Details
-
ResultSetWrapper
Creates a newResultSetWrapper
instance.- Parameters:
instance
- The wrapped instance.
-
-
Method Details
-
absolute
- Specified by:
absolute
in interfaceResultSet
- Throws:
SQLException
-
afterLast
- Specified by:
afterLast
in interfaceResultSet
- Throws:
SQLException
-
beforeFirst
- Specified by:
beforeFirst
in interfaceResultSet
- Throws:
SQLException
-
cancelRowUpdates
- Specified by:
cancelRowUpdates
in interfaceResultSet
- Throws:
SQLException
-
clearWarnings
- Specified by:
clearWarnings
in interfaceResultSet
- Throws:
SQLException
-
close
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceResultSet
- Throws:
SQLException
-
deleteRow
- Specified by:
deleteRow
in interfaceResultSet
- Throws:
SQLException
-
findColumn
- Specified by:
findColumn
in interfaceResultSet
- Throws:
SQLException
-
first
- Specified by:
first
in interfaceResultSet
- Throws:
SQLException
-
getArray
- Specified by:
getArray
in interfaceResultSet
- Throws:
SQLException
-
getArray
- Specified by:
getArray
in interfaceResultSet
- Throws:
SQLException
-
getAsciiStream
- Specified by:
getAsciiStream
in interfaceResultSet
- Throws:
SQLException
-
getAsciiStream
- Specified by:
getAsciiStream
in interfaceResultSet
- Throws:
SQLException
-
getBigDecimal
- Specified by:
getBigDecimal
in interfaceResultSet
- Throws:
SQLException
-
getBigDecimal
Deprecated.- Specified by:
getBigDecimal
in interfaceResultSet
- Throws:
SQLException
-
getBigDecimal
- Specified by:
getBigDecimal
in interfaceResultSet
- Throws:
SQLException
-
getBigDecimal
@Deprecated public final BigDecimal getBigDecimal(String columnLabel, int scale) throws SQLException Deprecated.- Specified by:
getBigDecimal
in interfaceResultSet
- Throws:
SQLException
-
getBinaryStream
- Specified by:
getBinaryStream
in interfaceResultSet
- Throws:
SQLException
-
getBinaryStream
- Specified by:
getBinaryStream
in interfaceResultSet
- Throws:
SQLException
-
getBlob
- Specified by:
getBlob
in interfaceResultSet
- Throws:
SQLException
-
getBlob
- Specified by:
getBlob
in interfaceResultSet
- Throws:
SQLException
-
getBoolean
- Specified by:
getBoolean
in interfaceResultSet
- Throws:
SQLException
-
getBoolean
- Specified by:
getBoolean
in interfaceResultSet
- Throws:
SQLException
-
getByte
- Specified by:
getByte
in interfaceResultSet
- Throws:
SQLException
-
getByte
- Specified by:
getByte
in interfaceResultSet
- Throws:
SQLException
-
getBytes
- Specified by:
getBytes
in interfaceResultSet
- Throws:
SQLException
-
getBytes
- Specified by:
getBytes
in interfaceResultSet
- Throws:
SQLException
-
getCharacterStream
- Specified by:
getCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
getCharacterStream
- Specified by:
getCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
getClob
- Specified by:
getClob
in interfaceResultSet
- Throws:
SQLException
-
getClob
- Specified by:
getClob
in interfaceResultSet
- Throws:
SQLException
-
getConcurrency
- Specified by:
getConcurrency
in interfaceResultSet
- Throws:
SQLException
-
getCursorName
- Specified by:
getCursorName
in interfaceResultSet
- Throws:
SQLException
-
getDate
- Specified by:
getDate
in interfaceResultSet
- Throws:
SQLException
-
getDate
- Specified by:
getDate
in interfaceResultSet
- Throws:
SQLException
-
getDate
- Specified by:
getDate
in interfaceResultSet
- Throws:
SQLException
-
getDate
- Specified by:
getDate
in interfaceResultSet
- Throws:
SQLException
-
getDouble
- Specified by:
getDouble
in interfaceResultSet
- Throws:
SQLException
-
getDouble
- Specified by:
getDouble
in interfaceResultSet
- Throws:
SQLException
-
getFetchDirection
- Specified by:
getFetchDirection
in interfaceResultSet
- Throws:
SQLException
-
getFetchSize
- Specified by:
getFetchSize
in interfaceResultSet
- Throws:
SQLException
-
getFloat
- Specified by:
getFloat
in interfaceResultSet
- Throws:
SQLException
-
getFloat
- Specified by:
getFloat
in interfaceResultSet
- Throws:
SQLException
-
getHoldability
- Specified by:
getHoldability
in interfaceResultSet
- Throws:
SQLException
-
getInt
- Specified by:
getInt
in interfaceResultSet
- Throws:
SQLException
-
getInt
- Specified by:
getInt
in interfaceResultSet
- Throws:
SQLException
-
getLong
- Specified by:
getLong
in interfaceResultSet
- Throws:
SQLException
-
getLong
- Specified by:
getLong
in interfaceResultSet
- Throws:
SQLException
-
getMetaData
- Specified by:
getMetaData
in interfaceResultSet
- Throws:
SQLException
-
getNCharacterStream
- Specified by:
getNCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
getNCharacterStream
- Specified by:
getNCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
getNClob
- Specified by:
getNClob
in interfaceResultSet
- Throws:
SQLException
-
getNClob
- Specified by:
getNClob
in interfaceResultSet
- Throws:
SQLException
-
getNString
- Specified by:
getNString
in interfaceResultSet
- Throws:
SQLException
-
getNString
- Specified by:
getNString
in interfaceResultSet
- Throws:
SQLException
-
getObject
- Specified by:
getObject
in interfaceResultSet
- Throws:
SQLException
-
getObject
- Specified by:
getObject
in interfaceResultSet
- Throws:
SQLException
-
getObject
- Specified by:
getObject
in interfaceResultSet
- Throws:
SQLException
-
getObject
- Specified by:
getObject
in interfaceResultSet
- Throws:
SQLException
-
getObject
- Specified by:
getObject
in interfaceResultSet
- Throws:
SQLException
-
getObject
- Specified by:
getObject
in interfaceResultSet
- Throws:
SQLException
-
getRef
- Specified by:
getRef
in interfaceResultSet
- Throws:
SQLException
-
getRef
- Specified by:
getRef
in interfaceResultSet
- Throws:
SQLException
-
getRow
- Specified by:
getRow
in interfaceResultSet
- Throws:
SQLException
-
getRowId
- Specified by:
getRowId
in interfaceResultSet
- Throws:
SQLException
-
getRowId
- Specified by:
getRowId
in interfaceResultSet
- Throws:
SQLException
-
getShort
- Specified by:
getShort
in interfaceResultSet
- Throws:
SQLException
-
getShort
- Specified by:
getShort
in interfaceResultSet
- Throws:
SQLException
-
getSQLXML
- Specified by:
getSQLXML
in interfaceResultSet
- Throws:
SQLException
-
getSQLXML
- Specified by:
getSQLXML
in interfaceResultSet
- Throws:
SQLException
-
getStatement
- Specified by:
getStatement
in interfaceResultSet
- Throws:
SQLException
-
getString
- Specified by:
getString
in interfaceResultSet
- Throws:
SQLException
-
getString
- Specified by:
getString
in interfaceResultSet
- Throws:
SQLException
-
getTime
- Specified by:
getTime
in interfaceResultSet
- Throws:
SQLException
-
getTime
- Specified by:
getTime
in interfaceResultSet
- Throws:
SQLException
-
getTime
- Specified by:
getTime
in interfaceResultSet
- Throws:
SQLException
-
getTime
- Specified by:
getTime
in interfaceResultSet
- Throws:
SQLException
-
getTimestamp
- Specified by:
getTimestamp
in interfaceResultSet
- Throws:
SQLException
-
getTimestamp
- Specified by:
getTimestamp
in interfaceResultSet
- Throws:
SQLException
-
getTimestamp
- Specified by:
getTimestamp
in interfaceResultSet
- Throws:
SQLException
-
getTimestamp
- Specified by:
getTimestamp
in interfaceResultSet
- Throws:
SQLException
-
getType
- Specified by:
getType
in interfaceResultSet
- Throws:
SQLException
-
getUnicodeStream
Deprecated.- Specified by:
getUnicodeStream
in interfaceResultSet
- Throws:
SQLException
-
getUnicodeStream
Deprecated.- Specified by:
getUnicodeStream
in interfaceResultSet
- Throws:
SQLException
-
getURL
- Specified by:
getURL
in interfaceResultSet
- Throws:
SQLException
-
getURL
- Specified by:
getURL
in interfaceResultSet
- Throws:
SQLException
-
getWarnings
- Specified by:
getWarnings
in interfaceResultSet
- Throws:
SQLException
-
insertRow
- Specified by:
insertRow
in interfaceResultSet
- Throws:
SQLException
-
isAfterLast
- Specified by:
isAfterLast
in interfaceResultSet
- Throws:
SQLException
-
isBeforeFirst
- Specified by:
isBeforeFirst
in interfaceResultSet
- Throws:
SQLException
-
isClosed
- Specified by:
isClosed
in interfaceResultSet
- Throws:
SQLException
-
isFirst
- Specified by:
isFirst
in interfaceResultSet
- Throws:
SQLException
-
isLast
- Specified by:
isLast
in interfaceResultSet
- Throws:
SQLException
-
isWrapperFor
- Specified by:
isWrapperFor
in interfaceWrapper
- Throws:
SQLException
-
last
- Specified by:
last
in interfaceResultSet
- Throws:
SQLException
-
moveToCurrentRow
- Specified by:
moveToCurrentRow
in interfaceResultSet
- Throws:
SQLException
-
moveToInsertRow
- Specified by:
moveToInsertRow
in interfaceResultSet
- Throws:
SQLException
-
next
- Specified by:
next
in interfaceResultSet
- Throws:
SQLException
-
previous
- Specified by:
previous
in interfaceResultSet
- Throws:
SQLException
-
refreshRow
- Specified by:
refreshRow
in interfaceResultSet
- Throws:
SQLException
-
relative
- Specified by:
relative
in interfaceResultSet
- Throws:
SQLException
-
rowDeleted
- Specified by:
rowDeleted
in interfaceResultSet
- Throws:
SQLException
-
rowInserted
- Specified by:
rowInserted
in interfaceResultSet
- Throws:
SQLException
-
rowUpdated
- Specified by:
rowUpdated
in interfaceResultSet
- Throws:
SQLException
-
setFetchDirection
- Specified by:
setFetchDirection
in interfaceResultSet
- Throws:
SQLException
-
setFetchSize
- Specified by:
setFetchSize
in interfaceResultSet
- Throws:
SQLException
-
unwrap
- Specified by:
unwrap
in interfaceWrapper
- Throws:
SQLException
-
updateArray
- Specified by:
updateArray
in interfaceResultSet
- Throws:
SQLException
-
updateArray
- Specified by:
updateArray
in interfaceResultSet
- Throws:
SQLException
-
updateAsciiStream
- Specified by:
updateAsciiStream
in interfaceResultSet
- Throws:
SQLException
-
updateAsciiStream
- Specified by:
updateAsciiStream
in interfaceResultSet
- Throws:
SQLException
-
updateAsciiStream
public final void updateAsciiStream(int columnIndex, InputStream x, long length) throws SQLException - Specified by:
updateAsciiStream
in interfaceResultSet
- Throws:
SQLException
-
updateAsciiStream
- Specified by:
updateAsciiStream
in interfaceResultSet
- Throws:
SQLException
-
updateAsciiStream
public final void updateAsciiStream(String columnLabel, InputStream x, int length) throws SQLException - Specified by:
updateAsciiStream
in interfaceResultSet
- Throws:
SQLException
-
updateAsciiStream
public final void updateAsciiStream(String columnLabel, InputStream x, long length) throws SQLException - Specified by:
updateAsciiStream
in interfaceResultSet
- Throws:
SQLException
-
updateBigDecimal
- Specified by:
updateBigDecimal
in interfaceResultSet
- Throws:
SQLException
-
updateBigDecimal
- Specified by:
updateBigDecimal
in interfaceResultSet
- Throws:
SQLException
-
updateBinaryStream
- Specified by:
updateBinaryStream
in interfaceResultSet
- Throws:
SQLException
-
updateBinaryStream
public final void updateBinaryStream(int columnIndex, InputStream x, int length) throws SQLException - Specified by:
updateBinaryStream
in interfaceResultSet
- Throws:
SQLException
-
updateBinaryStream
public final void updateBinaryStream(int columnIndex, InputStream x, long length) throws SQLException - Specified by:
updateBinaryStream
in interfaceResultSet
- Throws:
SQLException
-
updateBinaryStream
- Specified by:
updateBinaryStream
in interfaceResultSet
- Throws:
SQLException
-
updateBinaryStream
public final void updateBinaryStream(String columnLabel, InputStream x, int length) throws SQLException - Specified by:
updateBinaryStream
in interfaceResultSet
- Throws:
SQLException
-
updateBinaryStream
public final void updateBinaryStream(String columnLabel, InputStream x, long length) throws SQLException - Specified by:
updateBinaryStream
in interfaceResultSet
- Throws:
SQLException
-
updateBlob
- Specified by:
updateBlob
in interfaceResultSet
- Throws:
SQLException
-
updateBlob
- Specified by:
updateBlob
in interfaceResultSet
- Throws:
SQLException
-
updateBlob
public final void updateBlob(int columnIndex, InputStream inputStream, long length) throws SQLException - Specified by:
updateBlob
in interfaceResultSet
- Throws:
SQLException
-
updateBlob
- Specified by:
updateBlob
in interfaceResultSet
- Throws:
SQLException
-
updateBlob
- Specified by:
updateBlob
in interfaceResultSet
- Throws:
SQLException
-
updateBlob
public final void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException - Specified by:
updateBlob
in interfaceResultSet
- Throws:
SQLException
-
updateBoolean
- Specified by:
updateBoolean
in interfaceResultSet
- Throws:
SQLException
-
updateBoolean
- Specified by:
updateBoolean
in interfaceResultSet
- Throws:
SQLException
-
updateByte
- Specified by:
updateByte
in interfaceResultSet
- Throws:
SQLException
-
updateByte
- Specified by:
updateByte
in interfaceResultSet
- Throws:
SQLException
-
updateBytes
- Specified by:
updateBytes
in interfaceResultSet
- Throws:
SQLException
-
updateBytes
- Specified by:
updateBytes
in interfaceResultSet
- Throws:
SQLException
-
updateCharacterStream
- Specified by:
updateCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
updateCharacterStream
- Specified by:
updateCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
updateCharacterStream
- Specified by:
updateCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
updateCharacterStream
- Specified by:
updateCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
updateCharacterStream
public final void updateCharacterStream(String columnLabel, Reader reader, int length) throws SQLException - Specified by:
updateCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
updateCharacterStream
public final void updateCharacterStream(String columnLabel, Reader reader, long length) throws SQLException - Specified by:
updateCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
updateClob
- Specified by:
updateClob
in interfaceResultSet
- Throws:
SQLException
-
updateClob
- Specified by:
updateClob
in interfaceResultSet
- Throws:
SQLException
-
updateClob
- Specified by:
updateClob
in interfaceResultSet
- Throws:
SQLException
-
updateClob
- Specified by:
updateClob
in interfaceResultSet
- Throws:
SQLException
-
updateClob
- Specified by:
updateClob
in interfaceResultSet
- Throws:
SQLException
-
updateClob
- Specified by:
updateClob
in interfaceResultSet
- Throws:
SQLException
-
updateDate
- Specified by:
updateDate
in interfaceResultSet
- Throws:
SQLException
-
updateDate
- Specified by:
updateDate
in interfaceResultSet
- Throws:
SQLException
-
updateDouble
- Specified by:
updateDouble
in interfaceResultSet
- Throws:
SQLException
-
updateDouble
- Specified by:
updateDouble
in interfaceResultSet
- Throws:
SQLException
-
updateFloat
- Specified by:
updateFloat
in interfaceResultSet
- Throws:
SQLException
-
updateFloat
- Specified by:
updateFloat
in interfaceResultSet
- Throws:
SQLException
-
updateInt
- Specified by:
updateInt
in interfaceResultSet
- Throws:
SQLException
-
updateInt
- Specified by:
updateInt
in interfaceResultSet
- Throws:
SQLException
-
updateLong
- Specified by:
updateLong
in interfaceResultSet
- Throws:
SQLException
-
updateLong
- Specified by:
updateLong
in interfaceResultSet
- Throws:
SQLException
-
updateNCharacterStream
- Specified by:
updateNCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
updateNCharacterStream
public final void updateNCharacterStream(int columnIndex, Reader x, long length) throws SQLException - Specified by:
updateNCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
updateNCharacterStream
- Specified by:
updateNCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
updateNCharacterStream
public final void updateNCharacterStream(String columnLabel, Reader reader, long length) throws SQLException - Specified by:
updateNCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
updateNClob
- Specified by:
updateNClob
in interfaceResultSet
- Throws:
SQLException
-
updateNClob
- Specified by:
updateNClob
in interfaceResultSet
- Throws:
SQLException
-
updateNClob
- Specified by:
updateNClob
in interfaceResultSet
- Throws:
SQLException
-
updateNClob
- Specified by:
updateNClob
in interfaceResultSet
- Throws:
SQLException
-
updateNClob
- Specified by:
updateNClob
in interfaceResultSet
- Throws:
SQLException
-
updateNClob
- Specified by:
updateNClob
in interfaceResultSet
- Throws:
SQLException
-
updateNString
- Specified by:
updateNString
in interfaceResultSet
- Throws:
SQLException
-
updateNString
- Specified by:
updateNString
in interfaceResultSet
- Throws:
SQLException
-
updateNull
- Specified by:
updateNull
in interfaceResultSet
- Throws:
SQLException
-
updateNull
- Specified by:
updateNull
in interfaceResultSet
- Throws:
SQLException
-
updateObject
- Specified by:
updateObject
in interfaceResultSet
- Throws:
SQLException
-
updateObject
- Specified by:
updateObject
in interfaceResultSet
- Throws:
SQLException
-
updateObject
public final void updateObject(int columnIndex, Object x, SQLType targetSqlType) throws SQLException - Specified by:
updateObject
in interfaceResultSet
- Throws:
SQLException
-
updateObject
public final void updateObject(int columnIndex, Object x, SQLType targetSqlType, int scaleOrLength) throws SQLException - Specified by:
updateObject
in interfaceResultSet
- Throws:
SQLException
-
updateObject
- Specified by:
updateObject
in interfaceResultSet
- Throws:
SQLException
-
updateObject
- Specified by:
updateObject
in interfaceResultSet
- Throws:
SQLException
-
updateObject
public final void updateObject(String columnLabel, Object x, SQLType targetSqlType) throws SQLException - Specified by:
updateObject
in interfaceResultSet
- Throws:
SQLException
-
updateObject
public final void updateObject(String columnLabel, Object x, SQLType targetSqlType, int scaleOrLength) throws SQLException - Specified by:
updateObject
in interfaceResultSet
- Throws:
SQLException
-
updateRef
- Specified by:
updateRef
in interfaceResultSet
- Throws:
SQLException
-
updateRef
- Specified by:
updateRef
in interfaceResultSet
- Throws:
SQLException
-
updateRow
- Specified by:
updateRow
in interfaceResultSet
- Throws:
SQLException
-
updateRowId
- Specified by:
updateRowId
in interfaceResultSet
- Throws:
SQLException
-
updateRowId
- Specified by:
updateRowId
in interfaceResultSet
- Throws:
SQLException
-
updateShort
- Specified by:
updateShort
in interfaceResultSet
- Throws:
SQLException
-
updateShort
- Specified by:
updateShort
in interfaceResultSet
- Throws:
SQLException
-
updateSQLXML
- Specified by:
updateSQLXML
in interfaceResultSet
- Throws:
SQLException
-
updateSQLXML
- Specified by:
updateSQLXML
in interfaceResultSet
- Throws:
SQLException
-
updateString
- Specified by:
updateString
in interfaceResultSet
- Throws:
SQLException
-
updateString
- Specified by:
updateString
in interfaceResultSet
- Throws:
SQLException
-
updateTime
- Specified by:
updateTime
in interfaceResultSet
- Throws:
SQLException
-
updateTime
- Specified by:
updateTime
in interfaceResultSet
- Throws:
SQLException
-
updateTimestamp
- Specified by:
updateTimestamp
in interfaceResultSet
- Throws:
SQLException
-
updateTimestamp
- Specified by:
updateTimestamp
in interfaceResultSet
- Throws:
SQLException
-
wasNull
- Specified by:
wasNull
in interfaceResultSet
- Throws:
SQLException
-