public interface MockResultSet extends ResultSet
| Modifier and Type | Interface and Description |
|---|---|
static class |
MockResultSet.Empty |
| Modifier and Type | Field and Description |
|---|---|
static byte[] |
BYTES |
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| Modifier and Type | Method and Description |
|---|---|
default boolean |
absolute(int row) |
default void |
afterLast() |
default void |
beforeFirst() |
default void |
cancelRowUpdates() |
default void |
clearWarnings() |
default void |
close() |
default void |
deleteRow() |
default int |
findColumn(String columnLabel) |
default boolean |
first() |
default Array |
getArray(int columnIndex) |
default Array |
getArray(String columnLabel) |
default InputStream |
getAsciiStream(int columnIndex) |
default InputStream |
getAsciiStream(String columnLabel) |
default BigDecimal |
getBigDecimal(int columnIndex) |
default BigDecimal |
getBigDecimal(int columnIndex,
int scale) |
default BigDecimal |
getBigDecimal(String columnLabel) |
default BigDecimal |
getBigDecimal(String columnLabel,
int scale) |
default InputStream |
getBinaryStream(int columnIndex) |
default InputStream |
getBinaryStream(String columnLabel) |
default Blob |
getBlob(int columnIndex) |
default Blob |
getBlob(String columnLabel) |
default boolean |
getBoolean(int columnIndex) |
default boolean |
getBoolean(String columnLabel) |
default byte |
getByte(int columnIndex) |
default byte |
getByte(String columnLabel) |
default byte[] |
getBytes(int columnIndex) |
default byte[] |
getBytes(String columnLabel) |
default Reader |
getCharacterStream(int columnIndex) |
default Reader |
getCharacterStream(String columnLabel) |
default Clob |
getClob(int columnIndex) |
default Clob |
getClob(String columnLabel) |
default int |
getConcurrency() |
default String |
getCursorName() |
default Date |
getDate(int columnIndex) |
default Date |
getDate(int columnIndex,
Calendar cal) |
default Date |
getDate(String columnLabel) |
default Date |
getDate(String columnLabel,
Calendar cal) |
default double |
getDouble(int columnIndex) |
default double |
getDouble(String columnLabel) |
default int |
getFetchDirection() |
default int |
getFetchSize() |
default float |
getFloat(int columnIndex) |
default float |
getFloat(String columnLabel) |
default int |
getHoldability() |
default int |
getInt(int columnIndex) |
default int |
getInt(String columnLabel) |
default long |
getLong(int columnIndex) |
default long |
getLong(String columnLabel) |
default ResultSetMetaData |
getMetaData() |
default Reader |
getNCharacterStream(int columnIndex) |
default Reader |
getNCharacterStream(String columnLabel) |
default NClob |
getNClob(int columnIndex) |
default NClob |
getNClob(String columnLabel) |
default String |
getNString(int columnIndex) |
default String |
getNString(String columnLabel) |
default Object |
getObject(int columnIndex) |
default <T> T |
getObject(int columnIndex,
Class<T> type) |
default Object |
getObject(int columnIndex,
Map<String,Class<?>> map) |
default Object |
getObject(String columnLabel) |
default <T> T |
getObject(String columnLabel,
Class<T> type) |
default Object |
getObject(String columnLabel,
Map<String,Class<?>> map) |
default Ref |
getRef(int columnIndex) |
default Ref |
getRef(String columnLabel) |
default int |
getRow() |
default RowId |
getRowId(int columnIndex) |
default RowId |
getRowId(String columnLabel) |
default short |
getShort(int columnIndex) |
default short |
getShort(String columnLabel) |
default SQLXML |
getSQLXML(int columnIndex) |
default SQLXML |
getSQLXML(String columnLabel) |
default Statement |
getStatement() |
default String |
getString(int columnIndex) |
default String |
getString(String columnLabel) |
default Time |
getTime(int columnIndex) |
default Time |
getTime(int columnIndex,
Calendar cal) |
default Time |
getTime(String columnLabel) |
default Time |
getTime(String columnLabel,
Calendar cal) |
default Timestamp |
getTimestamp(int columnIndex) |
default Timestamp |
getTimestamp(int columnIndex,
Calendar cal) |
default Timestamp |
getTimestamp(String columnLabel) |
default Timestamp |
getTimestamp(String columnLabel,
Calendar cal) |
default int |
getType() |
default InputStream |
getUnicodeStream(int columnIndex) |
default InputStream |
getUnicodeStream(String columnLabel) |
default URL |
getURL(int columnIndex) |
default URL |
getURL(String columnLabel) |
default SQLWarning |
getWarnings() |
default void |
insertRow() |
default boolean |
isAfterLast() |
default boolean |
isBeforeFirst() |
default boolean |
isClosed() |
default boolean |
isFirst() |
default boolean |
isLast() |
default boolean |
isWrapperFor(Class<?> iface) |
default boolean |
last() |
default void |
moveToCurrentRow() |
default void |
moveToInsertRow() |
default boolean |
next() |
default boolean |
previous() |
default void |
refreshRow() |
default boolean |
relative(int rows) |
default boolean |
rowDeleted() |
default boolean |
rowInserted() |
default boolean |
rowUpdated() |
default void |
setFetchDirection(int direction) |
default void |
setFetchSize(int rows) |
default <T> T |
unwrap(Class<T> iface) |
default void |
updateArray(int columnIndex,
Array x) |
default void |
updateArray(String columnLabel,
Array x) |
default void |
updateAsciiStream(int columnIndex,
InputStream x) |
default void |
updateAsciiStream(int columnIndex,
InputStream x,
int length) |
default void |
updateAsciiStream(int columnIndex,
InputStream x,
long length) |
default void |
updateAsciiStream(String columnLabel,
InputStream x) |
default void |
updateAsciiStream(String columnLabel,
InputStream x,
int length) |
default void |
updateAsciiStream(String columnLabel,
InputStream x,
long length) |
default void |
updateBigDecimal(int columnIndex,
BigDecimal x) |
default void |
updateBigDecimal(String columnLabel,
BigDecimal x) |
default void |
updateBinaryStream(int columnIndex,
InputStream x) |
default void |
updateBinaryStream(int columnIndex,
InputStream x,
int length) |
default void |
updateBinaryStream(int columnIndex,
InputStream x,
long length) |
default void |
updateBinaryStream(String columnLabel,
InputStream x) |
default void |
updateBinaryStream(String columnLabel,
InputStream x,
int length) |
default void |
updateBinaryStream(String columnLabel,
InputStream x,
long length) |
default void |
updateBlob(int columnIndex,
Blob x) |
default void |
updateBlob(int columnIndex,
InputStream inputStream) |
default void |
updateBlob(int columnIndex,
InputStream inputStream,
long length) |
default void |
updateBlob(String columnLabel,
Blob x) |
default void |
updateBlob(String columnLabel,
InputStream inputStream) |
default void |
updateBlob(String columnLabel,
InputStream inputStream,
long length) |
default void |
updateBoolean(int columnIndex,
boolean x) |
default void |
updateBoolean(String columnLabel,
boolean x) |
default void |
updateByte(int columnIndex,
byte x) |
default void |
updateByte(String columnLabel,
byte x) |
default void |
updateBytes(int columnIndex,
byte[] x) |
default void |
updateBytes(String columnLabel,
byte[] x) |
default void |
updateCharacterStream(int columnIndex,
Reader x) |
default void |
updateCharacterStream(int columnIndex,
Reader x,
int length) |
default void |
updateCharacterStream(int columnIndex,
Reader x,
long length) |
default void |
updateCharacterStream(String columnLabel,
Reader reader) |
default void |
updateCharacterStream(String columnLabel,
Reader reader,
int length) |
default void |
updateCharacterStream(String columnLabel,
Reader reader,
long length) |
default void |
updateClob(int columnIndex,
Clob x) |
default void |
updateClob(int columnIndex,
Reader reader) |
default void |
updateClob(int columnIndex,
Reader reader,
long length) |
default void |
updateClob(String columnLabel,
Clob x) |
default void |
updateClob(String columnLabel,
Reader reader) |
default void |
updateClob(String columnLabel,
Reader reader,
long length) |
default void |
updateDate(int columnIndex,
Date x) |
default void |
updateDate(String columnLabel,
Date x) |
default void |
updateDouble(int columnIndex,
double x) |
default void |
updateDouble(String columnLabel,
double x) |
default void |
updateFloat(int columnIndex,
float x) |
default void |
updateFloat(String columnLabel,
float x) |
default void |
updateInt(int columnIndex,
int x) |
default void |
updateInt(String columnLabel,
int x) |
default void |
updateLong(int columnIndex,
long x) |
default void |
updateLong(String columnLabel,
long x) |
default void |
updateNCharacterStream(int columnIndex,
Reader x) |
default void |
updateNCharacterStream(int columnIndex,
Reader x,
long length) |
default void |
updateNCharacterStream(String columnLabel,
Reader reader) |
default void |
updateNCharacterStream(String columnLabel,
Reader reader,
long length) |
default void |
updateNClob(int columnIndex,
NClob nClob) |
default void |
updateNClob(int columnIndex,
Reader reader) |
default void |
updateNClob(int columnIndex,
Reader reader,
long length) |
default void |
updateNClob(String columnLabel,
NClob nClob) |
default void |
updateNClob(String columnLabel,
Reader reader) |
default void |
updateNClob(String columnLabel,
Reader reader,
long length) |
default void |
updateNString(int columnIndex,
String nString) |
default void |
updateNString(String columnLabel,
String nString) |
default void |
updateNull(int columnIndex) |
default void |
updateNull(String columnLabel) |
default void |
updateObject(int columnIndex,
Object x) |
default void |
updateObject(int columnIndex,
Object x,
int scaleOrLength) |
default void |
updateObject(String columnLabel,
Object x) |
default void |
updateObject(String columnLabel,
Object x,
int scaleOrLength) |
default void |
updateRef(int columnIndex,
Ref x) |
default void |
updateRef(String columnLabel,
Ref x) |
default void |
updateRow() |
default void |
updateRowId(int columnIndex,
RowId x) |
default void |
updateRowId(String columnLabel,
RowId x) |
default void |
updateShort(int columnIndex,
short x) |
default void |
updateShort(String columnLabel,
short x) |
default void |
updateSQLXML(int columnIndex,
SQLXML xmlObject) |
default void |
updateSQLXML(String columnLabel,
SQLXML xmlObject) |
default void |
updateString(int columnIndex,
String x) |
default void |
updateString(String columnLabel,
String x) |
default void |
updateTime(int columnIndex,
Time x) |
default void |
updateTime(String columnLabel,
Time x) |
default void |
updateTimestamp(int columnIndex,
Timestamp x) |
default void |
updateTimestamp(String columnLabel,
Timestamp x) |
default boolean |
wasNull() |
updateObject, updateObject, updateObject, updateObjectdefault boolean next()
throws SQLException
next in interface ResultSetSQLExceptiondefault void close()
throws SQLException
close in interface AutoCloseableclose in interface ResultSetSQLExceptiondefault boolean wasNull()
throws SQLException
wasNull in interface ResultSetSQLExceptiondefault String getString(int columnIndex) throws SQLException
getString in interface ResultSetSQLExceptiondefault boolean getBoolean(int columnIndex)
throws SQLException
getBoolean in interface ResultSetSQLExceptiondefault byte getByte(int columnIndex)
throws SQLException
getByte in interface ResultSetSQLExceptiondefault short getShort(int columnIndex)
throws SQLException
getShort in interface ResultSetSQLExceptiondefault int getInt(int columnIndex)
throws SQLException
getInt in interface ResultSetSQLExceptiondefault long getLong(int columnIndex)
throws SQLException
getLong in interface ResultSetSQLExceptiondefault float getFloat(int columnIndex)
throws SQLException
getFloat in interface ResultSetSQLExceptiondefault double getDouble(int columnIndex)
throws SQLException
getDouble in interface ResultSetSQLExceptiondefault BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException
getBigDecimal in interface ResultSetSQLExceptiondefault byte[] getBytes(int columnIndex)
throws SQLException
getBytes in interface ResultSetSQLExceptiondefault Date getDate(int columnIndex) throws SQLException
getDate in interface ResultSetSQLExceptiondefault Time getTime(int columnIndex) throws SQLException
getTime in interface ResultSetSQLExceptiondefault Timestamp getTimestamp(int columnIndex) throws SQLException
getTimestamp in interface ResultSetSQLExceptiondefault InputStream getAsciiStream(int columnIndex) throws SQLException
getAsciiStream in interface ResultSetSQLExceptiondefault InputStream getUnicodeStream(int columnIndex) throws SQLException
getUnicodeStream in interface ResultSetSQLExceptiondefault InputStream getBinaryStream(int columnIndex) throws SQLException
getBinaryStream in interface ResultSetSQLExceptiondefault String getString(String columnLabel) throws SQLException
getString in interface ResultSetSQLExceptiondefault boolean getBoolean(String columnLabel) throws SQLException
getBoolean in interface ResultSetSQLExceptiondefault byte getByte(String columnLabel) throws SQLException
getByte in interface ResultSetSQLExceptiondefault short getShort(String columnLabel) throws SQLException
getShort in interface ResultSetSQLExceptiondefault int getInt(String columnLabel) throws SQLException
getInt in interface ResultSetSQLExceptiondefault long getLong(String columnLabel) throws SQLException
getLong in interface ResultSetSQLExceptiondefault float getFloat(String columnLabel) throws SQLException
getFloat in interface ResultSetSQLExceptiondefault double getDouble(String columnLabel) throws SQLException
getDouble in interface ResultSetSQLExceptiondefault BigDecimal getBigDecimal(String columnLabel, int scale) throws SQLException
getBigDecimal in interface ResultSetSQLExceptiondefault byte[] getBytes(String columnLabel) throws SQLException
getBytes in interface ResultSetSQLExceptiondefault Date getDate(String columnLabel) throws SQLException
getDate in interface ResultSetSQLExceptiondefault Time getTime(String columnLabel) throws SQLException
getTime in interface ResultSetSQLExceptiondefault Timestamp getTimestamp(String columnLabel) throws SQLException
getTimestamp in interface ResultSetSQLExceptiondefault InputStream getAsciiStream(String columnLabel) throws SQLException
getAsciiStream in interface ResultSetSQLExceptiondefault InputStream getUnicodeStream(String columnLabel) throws SQLException
getUnicodeStream in interface ResultSetSQLExceptiondefault InputStream getBinaryStream(String columnLabel) throws SQLException
getBinaryStream in interface ResultSetSQLExceptiondefault SQLWarning getWarnings() throws SQLException
getWarnings in interface ResultSetSQLExceptiondefault void clearWarnings()
throws SQLException
clearWarnings in interface ResultSetSQLExceptiondefault String getCursorName() throws SQLException
getCursorName in interface ResultSetSQLExceptiondefault ResultSetMetaData getMetaData() throws SQLException
getMetaData in interface ResultSetSQLExceptiondefault Object getObject(int columnIndex) throws SQLException
getObject in interface ResultSetSQLExceptiondefault Object getObject(String columnLabel) throws SQLException
getObject in interface ResultSetSQLExceptiondefault int findColumn(String columnLabel) throws SQLException
findColumn in interface ResultSetSQLExceptiondefault Reader getCharacterStream(int columnIndex) throws SQLException
getCharacterStream in interface ResultSetSQLExceptiondefault Reader getCharacterStream(String columnLabel) throws SQLException
getCharacterStream in interface ResultSetSQLExceptiondefault BigDecimal getBigDecimal(int columnIndex) throws SQLException
getBigDecimal in interface ResultSetSQLExceptiondefault BigDecimal getBigDecimal(String columnLabel) throws SQLException
getBigDecimal in interface ResultSetSQLExceptiondefault boolean isBeforeFirst()
throws SQLException
isBeforeFirst in interface ResultSetSQLExceptiondefault boolean isAfterLast()
throws SQLException
isAfterLast in interface ResultSetSQLExceptiondefault boolean isFirst()
throws SQLException
isFirst in interface ResultSetSQLExceptiondefault boolean isLast()
throws SQLException
isLast in interface ResultSetSQLExceptiondefault void beforeFirst()
throws SQLException
beforeFirst in interface ResultSetSQLExceptiondefault void afterLast()
throws SQLException
afterLast in interface ResultSetSQLExceptiondefault boolean first()
throws SQLException
first in interface ResultSetSQLExceptiondefault boolean last()
throws SQLException
last in interface ResultSetSQLExceptiondefault int getRow()
throws SQLException
getRow in interface ResultSetSQLExceptiondefault boolean absolute(int row)
throws SQLException
absolute in interface ResultSetSQLExceptiondefault boolean relative(int rows)
throws SQLException
relative in interface ResultSetSQLExceptiondefault boolean previous()
throws SQLException
previous in interface ResultSetSQLExceptiondefault int getFetchDirection()
throws SQLException
getFetchDirection in interface ResultSetSQLExceptiondefault void setFetchDirection(int direction)
throws SQLException
setFetchDirection in interface ResultSetSQLExceptiondefault int getFetchSize()
throws SQLException
getFetchSize in interface ResultSetSQLExceptiondefault void setFetchSize(int rows)
throws SQLException
setFetchSize in interface ResultSetSQLExceptiondefault int getType()
throws SQLException
getType in interface ResultSetSQLExceptiondefault int getConcurrency()
throws SQLException
getConcurrency in interface ResultSetSQLExceptiondefault boolean rowUpdated()
throws SQLException
rowUpdated in interface ResultSetSQLExceptiondefault boolean rowInserted()
throws SQLException
rowInserted in interface ResultSetSQLExceptiondefault boolean rowDeleted()
throws SQLException
rowDeleted in interface ResultSetSQLExceptiondefault void updateNull(int columnIndex)
throws SQLException
updateNull in interface ResultSetSQLExceptiondefault void updateBoolean(int columnIndex,
boolean x)
throws SQLException
updateBoolean in interface ResultSetSQLExceptiondefault void updateByte(int columnIndex,
byte x)
throws SQLException
updateByte in interface ResultSetSQLExceptiondefault void updateShort(int columnIndex,
short x)
throws SQLException
updateShort in interface ResultSetSQLExceptiondefault void updateInt(int columnIndex,
int x)
throws SQLException
updateInt in interface ResultSetSQLExceptiondefault void updateLong(int columnIndex,
long x)
throws SQLException
updateLong in interface ResultSetSQLExceptiondefault void updateFloat(int columnIndex,
float x)
throws SQLException
updateFloat in interface ResultSetSQLExceptiondefault void updateDouble(int columnIndex,
double x)
throws SQLException
updateDouble in interface ResultSetSQLExceptiondefault void updateBigDecimal(int columnIndex,
BigDecimal x)
throws SQLException
updateBigDecimal in interface ResultSetSQLExceptiondefault void updateString(int columnIndex,
String x)
throws SQLException
updateString in interface ResultSetSQLExceptiondefault void updateBytes(int columnIndex,
byte[] x)
throws SQLException
updateBytes in interface ResultSetSQLExceptiondefault void updateDate(int columnIndex,
Date x)
throws SQLException
updateDate in interface ResultSetSQLExceptiondefault void updateTime(int columnIndex,
Time x)
throws SQLException
updateTime in interface ResultSetSQLExceptiondefault void updateTimestamp(int columnIndex,
Timestamp x)
throws SQLException
updateTimestamp in interface ResultSetSQLExceptiondefault void updateAsciiStream(int columnIndex,
InputStream x,
int length)
throws SQLException
updateAsciiStream in interface ResultSetSQLExceptiondefault void updateBinaryStream(int columnIndex,
InputStream x,
int length)
throws SQLException
updateBinaryStream in interface ResultSetSQLExceptiondefault void updateCharacterStream(int columnIndex,
Reader x,
int length)
throws SQLException
updateCharacterStream in interface ResultSetSQLExceptiondefault void updateObject(int columnIndex,
Object x,
int scaleOrLength)
throws SQLException
updateObject in interface ResultSetSQLExceptiondefault void updateObject(int columnIndex,
Object x)
throws SQLException
updateObject in interface ResultSetSQLExceptiondefault void updateNull(String columnLabel) throws SQLException
updateNull in interface ResultSetSQLExceptiondefault void updateBoolean(String columnLabel, boolean x) throws SQLException
updateBoolean in interface ResultSetSQLExceptiondefault void updateByte(String columnLabel, byte x) throws SQLException
updateByte in interface ResultSetSQLExceptiondefault void updateShort(String columnLabel, short x) throws SQLException
updateShort in interface ResultSetSQLExceptiondefault void updateInt(String columnLabel, int x) throws SQLException
updateInt in interface ResultSetSQLExceptiondefault void updateLong(String columnLabel, long x) throws SQLException
updateLong in interface ResultSetSQLExceptiondefault void updateFloat(String columnLabel, float x) throws SQLException
updateFloat in interface ResultSetSQLExceptiondefault void updateDouble(String columnLabel, double x) throws SQLException
updateDouble in interface ResultSetSQLExceptiondefault void updateBigDecimal(String columnLabel, BigDecimal x) throws SQLException
updateBigDecimal in interface ResultSetSQLExceptiondefault void updateString(String columnLabel, String x) throws SQLException
updateString in interface ResultSetSQLExceptiondefault void updateBytes(String columnLabel, byte[] x) throws SQLException
updateBytes in interface ResultSetSQLExceptiondefault void updateDate(String columnLabel, Date x) throws SQLException
updateDate in interface ResultSetSQLExceptiondefault void updateTime(String columnLabel, Time x) throws SQLException
updateTime in interface ResultSetSQLExceptiondefault void updateTimestamp(String columnLabel, Timestamp x) throws SQLException
updateTimestamp in interface ResultSetSQLExceptiondefault void updateAsciiStream(String columnLabel, InputStream x, int length) throws SQLException
updateAsciiStream in interface ResultSetSQLExceptiondefault void updateBinaryStream(String columnLabel, InputStream x, int length) throws SQLException
updateBinaryStream in interface ResultSetSQLExceptiondefault void updateCharacterStream(String columnLabel, Reader reader, int length) throws SQLException
updateCharacterStream in interface ResultSetSQLExceptiondefault void updateObject(String columnLabel, Object x, int scaleOrLength) throws SQLException
updateObject in interface ResultSetSQLExceptiondefault void updateObject(String columnLabel, Object x) throws SQLException
updateObject in interface ResultSetSQLExceptiondefault void insertRow()
throws SQLException
insertRow in interface ResultSetSQLExceptiondefault void updateRow()
throws SQLException
updateRow in interface ResultSetSQLExceptiondefault void deleteRow()
throws SQLException
deleteRow in interface ResultSetSQLExceptiondefault void refreshRow()
throws SQLException
refreshRow in interface ResultSetSQLExceptiondefault void cancelRowUpdates()
throws SQLException
cancelRowUpdates in interface ResultSetSQLExceptiondefault void moveToInsertRow()
throws SQLException
moveToInsertRow in interface ResultSetSQLExceptiondefault void moveToCurrentRow()
throws SQLException
moveToCurrentRow in interface ResultSetSQLExceptiondefault Statement getStatement() throws SQLException
getStatement in interface ResultSetSQLExceptiondefault Object getObject(int columnIndex, Map<String,Class<?>> map) throws SQLException
getObject in interface ResultSetSQLExceptiondefault Ref getRef(int columnIndex) throws SQLException
getRef in interface ResultSetSQLExceptiondefault Blob getBlob(int columnIndex) throws SQLException
getBlob in interface ResultSetSQLExceptiondefault Clob getClob(int columnIndex) throws SQLException
getClob in interface ResultSetSQLExceptiondefault Array getArray(int columnIndex) throws SQLException
getArray in interface ResultSetSQLExceptiondefault Object getObject(String columnLabel, Map<String,Class<?>> map) throws SQLException
getObject in interface ResultSetSQLExceptiondefault Ref getRef(String columnLabel) throws SQLException
getRef in interface ResultSetSQLExceptiondefault Blob getBlob(String columnLabel) throws SQLException
getBlob in interface ResultSetSQLExceptiondefault Clob getClob(String columnLabel) throws SQLException
getClob in interface ResultSetSQLExceptiondefault Array getArray(String columnLabel) throws SQLException
getArray in interface ResultSetSQLExceptiondefault Date getDate(int columnIndex, Calendar cal) throws SQLException
getDate in interface ResultSetSQLExceptiondefault Date getDate(String columnLabel, Calendar cal) throws SQLException
getDate in interface ResultSetSQLExceptiondefault Time getTime(int columnIndex, Calendar cal) throws SQLException
getTime in interface ResultSetSQLExceptiondefault Time getTime(String columnLabel, Calendar cal) throws SQLException
getTime in interface ResultSetSQLExceptiondefault Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException
getTimestamp in interface ResultSetSQLExceptiondefault Timestamp getTimestamp(String columnLabel, Calendar cal) throws SQLException
getTimestamp in interface ResultSetSQLExceptiondefault URL getURL(int columnIndex) throws SQLException
getURL in interface ResultSetSQLExceptiondefault URL getURL(String columnLabel) throws SQLException
getURL in interface ResultSetSQLExceptiondefault void updateRef(int columnIndex,
Ref x)
throws SQLException
updateRef in interface ResultSetSQLExceptiondefault void updateRef(String columnLabel, Ref x) throws SQLException
updateRef in interface ResultSetSQLExceptiondefault void updateBlob(int columnIndex,
Blob x)
throws SQLException
updateBlob in interface ResultSetSQLExceptiondefault void updateBlob(String columnLabel, Blob x) throws SQLException
updateBlob in interface ResultSetSQLExceptiondefault void updateClob(int columnIndex,
Clob x)
throws SQLException
updateClob in interface ResultSetSQLExceptiondefault void updateClob(String columnLabel, Clob x) throws SQLException
updateClob in interface ResultSetSQLExceptiondefault void updateArray(int columnIndex,
Array x)
throws SQLException
updateArray in interface ResultSetSQLExceptiondefault void updateArray(String columnLabel, Array x) throws SQLException
updateArray in interface ResultSetSQLExceptiondefault RowId getRowId(int columnIndex) throws SQLException
getRowId in interface ResultSetSQLExceptiondefault RowId getRowId(String columnLabel) throws SQLException
getRowId in interface ResultSetSQLExceptiondefault void updateRowId(int columnIndex,
RowId x)
throws SQLException
updateRowId in interface ResultSetSQLExceptiondefault void updateRowId(String columnLabel, RowId x) throws SQLException
updateRowId in interface ResultSetSQLExceptiondefault int getHoldability()
throws SQLException
getHoldability in interface ResultSetSQLExceptiondefault boolean isClosed()
throws SQLException
isClosed in interface ResultSetSQLExceptiondefault void updateNString(int columnIndex,
String nString)
throws SQLException
updateNString in interface ResultSetSQLExceptiondefault void updateNString(String columnLabel, String nString) throws SQLException
updateNString in interface ResultSetSQLExceptiondefault void updateNClob(int columnIndex,
NClob nClob)
throws SQLException
updateNClob in interface ResultSetSQLExceptiondefault void updateNClob(String columnLabel, NClob nClob) throws SQLException
updateNClob in interface ResultSetSQLExceptiondefault NClob getNClob(int columnIndex) throws SQLException
getNClob in interface ResultSetSQLExceptiondefault NClob getNClob(String columnLabel) throws SQLException
getNClob in interface ResultSetSQLExceptiondefault SQLXML getSQLXML(int columnIndex) throws SQLException
getSQLXML in interface ResultSetSQLExceptiondefault SQLXML getSQLXML(String columnLabel) throws SQLException
getSQLXML in interface ResultSetSQLExceptiondefault void updateSQLXML(int columnIndex,
SQLXML xmlObject)
throws SQLException
updateSQLXML in interface ResultSetSQLExceptiondefault void updateSQLXML(String columnLabel, SQLXML xmlObject) throws SQLException
updateSQLXML in interface ResultSetSQLExceptiondefault String getNString(int columnIndex) throws SQLException
getNString in interface ResultSetSQLExceptiondefault String getNString(String columnLabel) throws SQLException
getNString in interface ResultSetSQLExceptiondefault Reader getNCharacterStream(int columnIndex) throws SQLException
getNCharacterStream in interface ResultSetSQLExceptiondefault Reader getNCharacterStream(String columnLabel) throws SQLException
getNCharacterStream in interface ResultSetSQLExceptiondefault void updateNCharacterStream(int columnIndex,
Reader x,
long length)
throws SQLException
updateNCharacterStream in interface ResultSetSQLExceptiondefault void updateNCharacterStream(String columnLabel, Reader reader, long length) throws SQLException
updateNCharacterStream in interface ResultSetSQLExceptiondefault void updateAsciiStream(int columnIndex,
InputStream x,
long length)
throws SQLException
updateAsciiStream in interface ResultSetSQLExceptiondefault void updateBinaryStream(int columnIndex,
InputStream x,
long length)
throws SQLException
updateBinaryStream in interface ResultSetSQLExceptiondefault void updateCharacterStream(int columnIndex,
Reader x,
long length)
throws SQLException
updateCharacterStream in interface ResultSetSQLExceptiondefault void updateAsciiStream(String columnLabel, InputStream x, long length) throws SQLException
updateAsciiStream in interface ResultSetSQLExceptiondefault void updateBinaryStream(String columnLabel, InputStream x, long length) throws SQLException
updateBinaryStream in interface ResultSetSQLExceptiondefault void updateCharacterStream(String columnLabel, Reader reader, long length) throws SQLException
updateCharacterStream in interface ResultSetSQLExceptiondefault void updateBlob(int columnIndex,
InputStream inputStream,
long length)
throws SQLException
updateBlob in interface ResultSetSQLExceptiondefault void updateBlob(String columnLabel, InputStream inputStream, long length) throws SQLException
updateBlob in interface ResultSetSQLExceptiondefault void updateClob(int columnIndex,
Reader reader,
long length)
throws SQLException
updateClob in interface ResultSetSQLExceptiondefault void updateClob(String columnLabel, Reader reader, long length) throws SQLException
updateClob in interface ResultSetSQLExceptiondefault void updateNClob(int columnIndex,
Reader reader,
long length)
throws SQLException
updateNClob in interface ResultSetSQLExceptiondefault void updateNClob(String columnLabel, Reader reader, long length) throws SQLException
updateNClob in interface ResultSetSQLExceptiondefault void updateNCharacterStream(int columnIndex,
Reader x)
throws SQLException
updateNCharacterStream in interface ResultSetSQLExceptiondefault void updateNCharacterStream(String columnLabel, Reader reader) throws SQLException
updateNCharacterStream in interface ResultSetSQLExceptiondefault void updateAsciiStream(int columnIndex,
InputStream x)
throws SQLException
updateAsciiStream in interface ResultSetSQLExceptiondefault void updateBinaryStream(int columnIndex,
InputStream x)
throws SQLException
updateBinaryStream in interface ResultSetSQLExceptiondefault void updateCharacterStream(int columnIndex,
Reader x)
throws SQLException
updateCharacterStream in interface ResultSetSQLExceptiondefault void updateAsciiStream(String columnLabel, InputStream x) throws SQLException
updateAsciiStream in interface ResultSetSQLExceptiondefault void updateBinaryStream(String columnLabel, InputStream x) throws SQLException
updateBinaryStream in interface ResultSetSQLExceptiondefault void updateCharacterStream(String columnLabel, Reader reader) throws SQLException
updateCharacterStream in interface ResultSetSQLExceptiondefault void updateBlob(int columnIndex,
InputStream inputStream)
throws SQLException
updateBlob in interface ResultSetSQLExceptiondefault void updateBlob(String columnLabel, InputStream inputStream) throws SQLException
updateBlob in interface ResultSetSQLExceptiondefault void updateClob(int columnIndex,
Reader reader)
throws SQLException
updateClob in interface ResultSetSQLExceptiondefault void updateClob(String columnLabel, Reader reader) throws SQLException
updateClob in interface ResultSetSQLExceptiondefault void updateNClob(int columnIndex,
Reader reader)
throws SQLException
updateNClob in interface ResultSetSQLExceptiondefault void updateNClob(String columnLabel, Reader reader) throws SQLException
updateNClob in interface ResultSetSQLExceptiondefault <T> T getObject(int columnIndex,
Class<T> type)
throws SQLException
getObject in interface ResultSetSQLExceptiondefault <T> T getObject(String columnLabel, Class<T> type) throws SQLException
getObject in interface ResultSetSQLExceptiondefault <T> T unwrap(Class<T> iface) throws SQLException
unwrap in interface WrapperSQLExceptiondefault boolean isWrapperFor(Class<?> iface) throws SQLException
isWrapperFor in interface WrapperSQLExceptionCopyright © 2018 JBoss by Red Hat. All rights reserved.