Package org.dellroad.stuff.sql
Class MergedResultSet
java.lang.Object
org.dellroad.stuff.sql.MergedResultSet
- All Implemented Interfaces:
AutoCloseable
,ResultSet
,Wrapper
Merges multiple
ResultSet
s into a single ResultSet
. The merge is performed in an online fashion
and supports preserving sort order for sorted ResultSet
s.
The given ResultSet
s must have the same column geometry. If the ResultSet
s are sorted, then in order
to preserve that sorting the ResultSet
s must be sorted on the same columns, and the sort columns and corresponding
sort orderings must be provided to the appropriate constructor.
This class provides a ResultSet
of type ResultSet.TYPE_FORWARD_ONLY
and concurrency mode ResultSet.CONCUR_READ_ONLY
.
Non-row specific information, such as is returned by getMetaData()
, getStatement()
, getFetchSize()
,
getHoldability()
, and findColumn()
is derived from the first ResultSet
provided.
-
Field Summary
Fields 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
ConstructorDescriptionMergedResultSet
(ResultSet... resultSets) Constructor.MergedResultSet
(List<ResultSet> resultSets) Constructor.MergedResultSet
(List<ResultSet> resultSets, int[] sortColumns) Constructor.MergedResultSet
(List<ResultSet> resultSets, int[] sortColumns, boolean[] sortOrders) Constructor.MergedResultSet
(List<ResultSet> resultSets, String[] sortColumns) Constructor.MergedResultSet
(List<ResultSet> resultSets, String[] sortColumns, boolean[] sortOrders) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionboolean
absolute
(int row) void
void
void
void
void
close()
void
int
findColumn
(String column) boolean
first()
getArray
(int column) getAsciiStream
(int column) getAsciiStream
(String column) getBigDecimal
(int column) getBigDecimal
(int column, int scale) getBigDecimal
(String column) getBigDecimal
(String column, int scale) getBinaryStream
(int column) getBinaryStream
(String column) getBlob
(int column) boolean
getBoolean
(int column) boolean
getBoolean
(String column) byte
getByte
(int column) byte
byte[]
getBytes
(int column) byte[]
getCharacterStream
(int column) getCharacterStream
(String column) getClob
(int column) int
getDate
(int column) double
getDouble
(int column) double
int
int
float
getFloat
(int column) float
int
int
getInt
(int column) int
long
getLong
(int column) long
getNCharacterStream
(int column) getNCharacterStream
(String column) getNClob
(int column) getNString
(int column) getNString
(String column) getObject
(int column) <T> T
<T> T
getRef
(int column) int
getRow()
getRowId
(int column) short
getShort
(int column) short
getSQLXML
(int column) getString
(int column) getTime
(int column) getTimestamp
(int column) getTimestamp
(int column, Calendar calendar) getTimestamp
(String column) getTimestamp
(String column, Calendar calendar) int
getType()
getUnicodeStream
(int column) getUnicodeStream
(String column) getURL
(int column) void
boolean
boolean
boolean
isClosed()
boolean
isFirst()
boolean
isLast()
boolean
isWrapperFor
(Class<?> iface) boolean
last()
void
void
boolean
next()
boolean
previous()
void
boolean
relative
(int row) boolean
boolean
boolean
void
setFetchDirection
(int dir) void
setFetchSize
(int size) <T> T
void
updateArray
(int column, Array value) void
updateArray
(String column, Array value) void
updateAsciiStream
(int column, InputStream value) void
updateAsciiStream
(int column, InputStream value, int length) void
updateAsciiStream
(int column, InputStream value, long length) void
updateAsciiStream
(String column, InputStream value) void
updateAsciiStream
(String column, InputStream value, int length) void
updateAsciiStream
(String column, InputStream value, long length) void
updateBigDecimal
(int column, BigDecimal value) void
updateBigDecimal
(String column, BigDecimal value) void
updateBinaryStream
(int column, InputStream value) void
updateBinaryStream
(int column, InputStream value, int length) void
updateBinaryStream
(int column, InputStream value, long length) void
updateBinaryStream
(String column, InputStream value) void
updateBinaryStream
(String column, InputStream value, int length) void
updateBinaryStream
(String column, InputStream value, long length) void
updateBlob
(int column, InputStream value) void
updateBlob
(int column, InputStream value, long length) void
updateBlob
(int column, Blob value) void
updateBlob
(String column, InputStream value) void
updateBlob
(String column, InputStream value, long length) void
updateBlob
(String column, Blob value) void
updateBoolean
(int column, boolean value) void
updateBoolean
(String column, boolean value) void
updateByte
(int column, byte value) void
updateByte
(String column, byte value) void
updateBytes
(int column, byte[] value) void
updateBytes
(String column, byte[] value) void
updateCharacterStream
(int column, Reader value) void
updateCharacterStream
(int column, Reader value, int length) void
updateCharacterStream
(int column, Reader value, long length) void
updateCharacterStream
(String column, Reader value) void
updateCharacterStream
(String column, Reader value, int length) void
updateCharacterStream
(String column, Reader value, long length) void
updateClob
(int column, Reader value) void
updateClob
(int column, Reader value, long length) void
updateClob
(int column, Clob value) void
updateClob
(String column, Reader value) void
updateClob
(String column, Reader value, long length) void
updateClob
(String column, Clob value) void
updateDate
(int column, Date value) void
updateDate
(String column, Date value) void
updateDouble
(int column, double value) void
updateDouble
(String column, double value) void
updateFloat
(int column, float value) void
updateFloat
(String column, float value) void
updateInt
(int column, int value) void
void
updateLong
(int column, long value) void
updateLong
(String column, long value) void
updateNCharacterStream
(int column, Reader value) void
updateNCharacterStream
(int column, Reader value, long length) void
updateNCharacterStream
(String column, Reader value) void
updateNCharacterStream
(String column, Reader value, long length) void
updateNClob
(int column, Reader value) void
updateNClob
(int column, Reader value, long length) void
updateNClob
(int column, NClob value) void
updateNClob
(String column, Reader value) void
updateNClob
(String column, Reader value, long length) void
updateNClob
(String column, NClob value) void
updateNString
(int column, String value) void
updateNString
(String column, String value) void
updateNull
(int column) void
updateNull
(String value) void
updateObject
(int column, Object value) void
updateObject
(int column, Object value, int length) void
updateObject
(String column, Object value) void
updateObject
(String column, Object value, int length) void
void
void
void
updateRowId
(int column, RowId value) void
updateRowId
(String column, RowId value) void
updateShort
(int column, short value) void
updateShort
(String column, short value) void
updateSQLXML
(int column, SQLXML value) void
updateSQLXML
(String column, SQLXML value) void
updateString
(int column, String value) void
updateString
(String column, String value) void
updateTime
(int column, Time value) void
updateTime
(String column, Time value) void
updateTimestamp
(int column, Timestamp value) void
updateTimestamp
(String column, Timestamp value) boolean
wasNull()
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.sql.ResultSet
updateObject, updateObject, updateObject, updateObject
-
Constructor Details
-
MergedResultSet
Constructor. No sort order is assumed- Parameters:
resultSets
- theResultSet
s to be merged- Throws:
IllegalArgumentException
- ifresultSets
is nullIllegalArgumentException
- ifresultSets
is empty or contains a null element
-
MergedResultSet
Constructor. No sort order is assumed- Parameters:
resultSets
- theResultSet
s to be merged- Throws:
IllegalArgumentException
- ifresultSets
is nullIllegalArgumentException
- ifresultSets
is empty or contains a null element
-
MergedResultSet
Constructor.- Parameters:
resultSets
- theResultSet
s to be mergedsortColumns
- the names of the columns on which theResultSet
s are sorted (ascending order assumed)- Throws:
IllegalArgumentException
- if any parameter is nullIllegalArgumentException
- ifresultSets
is empty or contains a null element
-
MergedResultSet
Constructor.- Parameters:
resultSets
- theResultSet
s to be mergedsortColumns
- the indicies (1-based) of the columns on which theResultSet
s are sorted (ascending order assumed)- Throws:
IllegalArgumentException
- if any parameter is nullIllegalArgumentException
- ifresultSets
is empty or contains a null element
-
MergedResultSet
Constructor.- Parameters:
resultSets
- theResultSet
s to be mergedsortColumns
- the names of the columns on which theResultSet
s are sortedsortOrders
- the ordering corresponding tosortColumns
(true for ascending); ifsortOrders
is shorter thansortColumns
, then ascending is assumed for the unspecified columns- Throws:
IllegalArgumentException
- if any parameter is nullIllegalArgumentException
- ifresultSets
is empty or contains a null element
-
MergedResultSet
Constructor.- Parameters:
resultSets
- theResultSet
s to be mergedsortColumns
- the indicies (1-based) of the columns on which theResultSet
s are sortedsortOrders
- the ordering corresponding tosortColumns
(true for ascending); ifsortOrders
is shorter thansortColumns
, then ascending is assumed for the unspecified columns- Throws:
IllegalArgumentException
- if any parameter is nullIllegalArgumentException
- ifresultSets
is empty or contains a null element
-
-
Method Details
-
next
- Specified by:
next
in interfaceResultSet
- Throws:
SQLException
-
close
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceResultSet
- Throws:
SQLException
-
wasNull
- Specified by:
wasNull
in interfaceResultSet
- Throws:
SQLException
-
getString
- Specified by:
getString
in interfaceResultSet
- Throws:
SQLException
-
getBoolean
- Specified by:
getBoolean
in interfaceResultSet
- Throws:
SQLException
-
getByte
- Specified by:
getByte
in interfaceResultSet
- Throws:
SQLException
-
getShort
- Specified by:
getShort
in interfaceResultSet
- Throws:
SQLException
-
getInt
- Specified by:
getInt
in interfaceResultSet
- Throws:
SQLException
-
getLong
- Specified by:
getLong
in interfaceResultSet
- Throws:
SQLException
-
getFloat
- Specified by:
getFloat
in interfaceResultSet
- Throws:
SQLException
-
getDouble
- Specified by:
getDouble
in interfaceResultSet
- Throws:
SQLException
-
getBigDecimal
- Specified by:
getBigDecimal
in interfaceResultSet
- Throws:
SQLException
-
getBytes
- Specified by:
getBytes
in interfaceResultSet
- Throws:
SQLException
-
getDate
- Specified by:
getDate
in interfaceResultSet
- Throws:
SQLException
-
getTime
- Specified by:
getTime
in interfaceResultSet
- Throws:
SQLException
-
getTimestamp
- Specified by:
getTimestamp
in interfaceResultSet
- Throws:
SQLException
-
getAsciiStream
- Specified by:
getAsciiStream
in interfaceResultSet
- Throws:
SQLException
-
getUnicodeStream
- Specified by:
getUnicodeStream
in interfaceResultSet
- Throws:
SQLException
-
getBinaryStream
- Specified by:
getBinaryStream
in interfaceResultSet
- Throws:
SQLException
-
getString
- Specified by:
getString
in interfaceResultSet
- Throws:
SQLException
-
getBoolean
- Specified by:
getBoolean
in interfaceResultSet
- Throws:
SQLException
-
getByte
- Specified by:
getByte
in interfaceResultSet
- Throws:
SQLException
-
getShort
- Specified by:
getShort
in interfaceResultSet
- Throws:
SQLException
-
getInt
- Specified by:
getInt
in interfaceResultSet
- Throws:
SQLException
-
getLong
- Specified by:
getLong
in interfaceResultSet
- Throws:
SQLException
-
getFloat
- Specified by:
getFloat
in interfaceResultSet
- Throws:
SQLException
-
getDouble
- Specified by:
getDouble
in interfaceResultSet
- Throws:
SQLException
-
getBigDecimal
- Specified by:
getBigDecimal
in interfaceResultSet
- Throws:
SQLException
-
getBytes
- Specified by:
getBytes
in interfaceResultSet
- Throws:
SQLException
-
getDate
- Specified by:
getDate
in interfaceResultSet
- Throws:
SQLException
-
getTime
- Specified by:
getTime
in interfaceResultSet
- Throws:
SQLException
-
getTimestamp
- Specified by:
getTimestamp
in interfaceResultSet
- Throws:
SQLException
-
getAsciiStream
- Specified by:
getAsciiStream
in interfaceResultSet
- Throws:
SQLException
-
getUnicodeStream
- Specified by:
getUnicodeStream
in interfaceResultSet
- Throws:
SQLException
-
getBinaryStream
- Specified by:
getBinaryStream
in interfaceResultSet
- Throws:
SQLException
-
getWarnings
- Specified by:
getWarnings
in interfaceResultSet
- Throws:
SQLException
-
clearWarnings
- Specified by:
clearWarnings
in interfaceResultSet
- Throws:
SQLException
-
getCursorName
- Specified by:
getCursorName
in interfaceResultSet
- Throws:
SQLException
-
getMetaData
- Specified by:
getMetaData
in interfaceResultSet
- Throws:
SQLException
-
getObject
- Specified by:
getObject
in interfaceResultSet
- Throws:
SQLException
-
getObject
- Specified by:
getObject
in interfaceResultSet
- Throws:
SQLException
-
findColumn
- Specified by:
findColumn
in interfaceResultSet
- Throws:
SQLException
-
getCharacterStream
- Specified by:
getCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
getCharacterStream
- Specified by:
getCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
getBigDecimal
- Specified by:
getBigDecimal
in interfaceResultSet
- Throws:
SQLException
-
getBigDecimal
- Specified by:
getBigDecimal
in interfaceResultSet
- Throws:
SQLException
-
isBeforeFirst
- Specified by:
isBeforeFirst
in interfaceResultSet
- Throws:
SQLException
-
isAfterLast
- Specified by:
isAfterLast
in interfaceResultSet
- Throws:
SQLException
-
isFirst
- Specified by:
isFirst
in interfaceResultSet
- Throws:
SQLException
-
isLast
- Specified by:
isLast
in interfaceResultSet
- Throws:
SQLException
-
beforeFirst
- Specified by:
beforeFirst
in interfaceResultSet
- Throws:
SQLException
-
afterLast
- Specified by:
afterLast
in interfaceResultSet
- Throws:
SQLException
-
first
- Specified by:
first
in interfaceResultSet
- Throws:
SQLException
-
last
- Specified by:
last
in interfaceResultSet
- Throws:
SQLException
-
getRow
- Specified by:
getRow
in interfaceResultSet
- Throws:
SQLException
-
absolute
- Specified by:
absolute
in interfaceResultSet
- Throws:
SQLException
-
relative
- Specified by:
relative
in interfaceResultSet
- Throws:
SQLException
-
previous
- Specified by:
previous
in interfaceResultSet
- Throws:
SQLException
-
setFetchDirection
- Specified by:
setFetchDirection
in interfaceResultSet
- Throws:
SQLException
-
getFetchDirection
- Specified by:
getFetchDirection
in interfaceResultSet
- Throws:
SQLException
-
setFetchSize
- Specified by:
setFetchSize
in interfaceResultSet
- Throws:
SQLException
-
getFetchSize
- Specified by:
getFetchSize
in interfaceResultSet
- Throws:
SQLException
-
getType
- Specified by:
getType
in interfaceResultSet
- Throws:
SQLException
-
getConcurrency
- Specified by:
getConcurrency
in interfaceResultSet
- Throws:
SQLException
-
rowUpdated
- Specified by:
rowUpdated
in interfaceResultSet
- Throws:
SQLException
-
rowInserted
- Specified by:
rowInserted
in interfaceResultSet
- Throws:
SQLException
-
rowDeleted
- Specified by:
rowDeleted
in interfaceResultSet
- Throws:
SQLException
-
updateNull
- Specified by:
updateNull
in interfaceResultSet
- Throws:
SQLException
-
updateBoolean
- Specified by:
updateBoolean
in interfaceResultSet
- Throws:
SQLException
-
updateByte
- Specified by:
updateByte
in interfaceResultSet
- Throws:
SQLException
-
updateShort
- Specified by:
updateShort
in interfaceResultSet
- Throws:
SQLException
-
updateInt
- Specified by:
updateInt
in interfaceResultSet
- Throws:
SQLException
-
updateLong
- Specified by:
updateLong
in interfaceResultSet
- Throws:
SQLException
-
updateFloat
- Specified by:
updateFloat
in interfaceResultSet
- Throws:
SQLException
-
updateDouble
- Specified by:
updateDouble
in interfaceResultSet
- Throws:
SQLException
-
updateBigDecimal
- Specified by:
updateBigDecimal
in interfaceResultSet
- Throws:
SQLException
-
updateString
- Specified by:
updateString
in interfaceResultSet
- Throws:
SQLException
-
updateBytes
- Specified by:
updateBytes
in interfaceResultSet
- Throws:
SQLException
-
updateDate
- Specified by:
updateDate
in interfaceResultSet
- Throws:
SQLException
-
updateTime
- Specified by:
updateTime
in interfaceResultSet
- Throws:
SQLException
-
updateTimestamp
- Specified by:
updateTimestamp
in interfaceResultSet
- Throws:
SQLException
-
updateAsciiStream
- Specified by:
updateAsciiStream
in interfaceResultSet
- Throws:
SQLException
-
updateBinaryStream
- Specified by:
updateBinaryStream
in interfaceResultSet
- Throws:
SQLException
-
updateCharacterStream
- Specified by:
updateCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
updateObject
- Specified by:
updateObject
in interfaceResultSet
- Throws:
SQLException
-
updateObject
- Specified by:
updateObject
in interfaceResultSet
- Throws:
SQLException
-
updateNull
- Specified by:
updateNull
in interfaceResultSet
- Throws:
SQLException
-
updateBoolean
- Specified by:
updateBoolean
in interfaceResultSet
- Throws:
SQLException
-
updateByte
- Specified by:
updateByte
in interfaceResultSet
- Throws:
SQLException
-
updateShort
- Specified by:
updateShort
in interfaceResultSet
- Throws:
SQLException
-
updateInt
- Specified by:
updateInt
in interfaceResultSet
- Throws:
SQLException
-
updateLong
- Specified by:
updateLong
in interfaceResultSet
- Throws:
SQLException
-
updateFloat
- Specified by:
updateFloat
in interfaceResultSet
- Throws:
SQLException
-
updateDouble
- Specified by:
updateDouble
in interfaceResultSet
- Throws:
SQLException
-
updateBigDecimal
- Specified by:
updateBigDecimal
in interfaceResultSet
- Throws:
SQLException
-
updateString
- Specified by:
updateString
in interfaceResultSet
- Throws:
SQLException
-
updateBytes
- Specified by:
updateBytes
in interfaceResultSet
- Throws:
SQLException
-
updateDate
- Specified by:
updateDate
in interfaceResultSet
- Throws:
SQLException
-
updateTime
- Specified by:
updateTime
in interfaceResultSet
- Throws:
SQLException
-
updateTimestamp
- Specified by:
updateTimestamp
in interfaceResultSet
- Throws:
SQLException
-
updateAsciiStream
- Specified by:
updateAsciiStream
in interfaceResultSet
- Throws:
SQLException
-
updateBinaryStream
- Specified by:
updateBinaryStream
in interfaceResultSet
- Throws:
SQLException
-
updateCharacterStream
- Specified by:
updateCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
updateObject
- Specified by:
updateObject
in interfaceResultSet
- Throws:
SQLException
-
updateObject
- Specified by:
updateObject
in interfaceResultSet
- Throws:
SQLException
-
insertRow
- Specified by:
insertRow
in interfaceResultSet
- Throws:
SQLException
-
updateRow
- Specified by:
updateRow
in interfaceResultSet
- Throws:
SQLException
-
deleteRow
- Specified by:
deleteRow
in interfaceResultSet
- Throws:
SQLException
-
refreshRow
- Specified by:
refreshRow
in interfaceResultSet
- Throws:
SQLException
-
cancelRowUpdates
- Specified by:
cancelRowUpdates
in interfaceResultSet
- Throws:
SQLException
-
moveToInsertRow
- Specified by:
moveToInsertRow
in interfaceResultSet
- Throws:
SQLException
-
moveToCurrentRow
- Specified by:
moveToCurrentRow
in interfaceResultSet
- Throws:
SQLException
-
getStatement
- Specified by:
getStatement
in interfaceResultSet
- Throws:
SQLException
-
getObject
- Specified by:
getObject
in interfaceResultSet
- Throws:
SQLException
-
getRef
- Specified by:
getRef
in interfaceResultSet
- Throws:
SQLException
-
getBlob
- Specified by:
getBlob
in interfaceResultSet
- Throws:
SQLException
-
getClob
- Specified by:
getClob
in interfaceResultSet
- Throws:
SQLException
-
getArray
- Specified by:
getArray
in interfaceResultSet
- Throws:
SQLException
-
getObject
- Specified by:
getObject
in interfaceResultSet
- Throws:
SQLException
-
getRef
- Specified by:
getRef
in interfaceResultSet
- Throws:
SQLException
-
getBlob
- Specified by:
getBlob
in interfaceResultSet
- Throws:
SQLException
-
getClob
- Specified by:
getClob
in interfaceResultSet
- Throws:
SQLException
-
getArray
- Specified by:
getArray
in interfaceResultSet
- Throws:
SQLException
-
getDate
- Specified by:
getDate
in interfaceResultSet
- Throws:
SQLException
-
getDate
- Specified by:
getDate
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
-
getURL
- Specified by:
getURL
in interfaceResultSet
- Throws:
SQLException
-
getURL
- Specified by:
getURL
in interfaceResultSet
- Throws:
SQLException
-
updateRef
- Specified by:
updateRef
in interfaceResultSet
- Throws:
SQLException
-
updateRef
- Specified by:
updateRef
in interfaceResultSet
- Throws:
SQLException
-
updateBlob
- Specified by:
updateBlob
in interfaceResultSet
- Throws:
SQLException
-
updateBlob
- Specified by:
updateBlob
in interfaceResultSet
- Throws:
SQLException
-
updateClob
- Specified by:
updateClob
in interfaceResultSet
- Throws:
SQLException
-
updateClob
- Specified by:
updateClob
in interfaceResultSet
- Throws:
SQLException
-
updateArray
- Specified by:
updateArray
in interfaceResultSet
- Throws:
SQLException
-
updateArray
- Specified by:
updateArray
in interfaceResultSet
- Throws:
SQLException
-
getRowId
- Specified by:
getRowId
in interfaceResultSet
- Throws:
SQLException
-
getRowId
- Specified by:
getRowId
in interfaceResultSet
- Throws:
SQLException
-
updateRowId
- Specified by:
updateRowId
in interfaceResultSet
- Throws:
SQLException
-
updateRowId
- Specified by:
updateRowId
in interfaceResultSet
- Throws:
SQLException
-
getHoldability
- Specified by:
getHoldability
in interfaceResultSet
- Throws:
SQLException
-
isClosed
- Specified by:
isClosed
in interfaceResultSet
- Throws:
SQLException
-
updateNString
- Specified by:
updateNString
in interfaceResultSet
- Throws:
SQLException
-
updateNString
- Specified by:
updateNString
in interfaceResultSet
- Throws:
SQLException
-
updateNClob
- Specified by:
updateNClob
in interfaceResultSet
- Throws:
SQLException
-
updateNClob
- Specified by:
updateNClob
in interfaceResultSet
- Throws:
SQLException
-
getNClob
- Specified by:
getNClob
in interfaceResultSet
- Throws:
SQLException
-
getNClob
- Specified by:
getNClob
in interfaceResultSet
- Throws:
SQLException
-
getSQLXML
- Specified by:
getSQLXML
in interfaceResultSet
- Throws:
SQLException
-
getSQLXML
- Specified by:
getSQLXML
in interfaceResultSet
- Throws:
SQLException
-
updateSQLXML
- Specified by:
updateSQLXML
in interfaceResultSet
- Throws:
SQLException
-
updateSQLXML
- Specified by:
updateSQLXML
in interfaceResultSet
- Throws:
SQLException
-
getNString
- Specified by:
getNString
in interfaceResultSet
- Throws:
SQLException
-
getNString
- Specified by:
getNString
in interfaceResultSet
- Throws:
SQLException
-
getNCharacterStream
- Specified by:
getNCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
getNCharacterStream
- Specified by:
getNCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
updateNCharacterStream
- Specified by:
updateNCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
updateNCharacterStream
- Specified by:
updateNCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
updateAsciiStream
- Specified by:
updateAsciiStream
in interfaceResultSet
- Throws:
SQLException
-
updateBinaryStream
- Specified by:
updateBinaryStream
in interfaceResultSet
- Throws:
SQLException
-
updateCharacterStream
- Specified by:
updateCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
updateAsciiStream
- Specified by:
updateAsciiStream
in interfaceResultSet
- Throws:
SQLException
-
updateBinaryStream
- Specified by:
updateBinaryStream
in interfaceResultSet
- Throws:
SQLException
-
updateCharacterStream
- Specified by:
updateCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
updateBlob
- Specified by:
updateBlob
in interfaceResultSet
- Throws:
SQLException
-
updateBlob
- Specified by:
updateBlob
in interfaceResultSet
- Throws:
SQLException
-
updateClob
- Specified by:
updateClob
in interfaceResultSet
- Throws:
SQLException
-
updateClob
- Specified by:
updateClob
in interfaceResultSet
- Throws:
SQLException
-
updateNClob
- Specified by:
updateNClob
in interfaceResultSet
- Throws:
SQLException
-
updateNClob
- Specified by:
updateNClob
in interfaceResultSet
- Throws:
SQLException
-
updateNCharacterStream
- Specified by:
updateNCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
updateNCharacterStream
- Specified by:
updateNCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
updateAsciiStream
- Specified by:
updateAsciiStream
in interfaceResultSet
- Throws:
SQLException
-
updateBinaryStream
- Specified by:
updateBinaryStream
in interfaceResultSet
- Throws:
SQLException
-
updateCharacterStream
- Specified by:
updateCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
updateAsciiStream
- Specified by:
updateAsciiStream
in interfaceResultSet
- Throws:
SQLException
-
updateBinaryStream
- Specified by:
updateBinaryStream
in interfaceResultSet
- Throws:
SQLException
-
updateCharacterStream
- Specified by:
updateCharacterStream
in interfaceResultSet
- Throws:
SQLException
-
updateBlob
- Specified by:
updateBlob
in interfaceResultSet
- Throws:
SQLException
-
updateBlob
- Specified by:
updateBlob
in interfaceResultSet
- Throws:
SQLException
-
updateClob
- Specified by:
updateClob
in interfaceResultSet
- Throws:
SQLException
-
updateClob
- Specified by:
updateClob
in interfaceResultSet
- Throws:
SQLException
-
updateNClob
- Specified by:
updateNClob
in interfaceResultSet
- Throws:
SQLException
-
updateNClob
- Specified by:
updateNClob
in interfaceResultSet
- Throws:
SQLException
-
getObject
- Specified by:
getObject
in interfaceResultSet
- Throws:
SQLException
-
getObject
- Specified by:
getObject
in interfaceResultSet
- Throws:
SQLException
-
isWrapperFor
- Specified by:
isWrapperFor
in interfaceWrapper
- Throws:
SQLException
-
unwrap
- Specified by:
unwrap
in interfaceWrapper
- Throws:
SQLException
-