Class ImportDumpResultSet
- java.lang.Object
-
- de.akquinet.jbosscc.guttenbase.export.ImportDumpResultSet
-
- All Implemented Interfaces:
AutoCloseable
,ResultSet
,Wrapper
public class ImportDumpResultSet extends Object implements ResultSet
SpecialResultSet
that reads data from the given stream. Only few inherited getter methods have a meaningful implementation, most methods will throw aUnsupportedOperationException
.© 2012-2034 akquinet tech@spree
- Author:
- M. Dahm
-
-
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
Constructors Constructor Description ImportDumpResultSet(Importer importer, DatabaseMetaData databaseMetaData, TableMetaData tableMetaData, List<String> selectedColumns)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
absolute(int row)
void
afterLast()
void
beforeFirst()
void
cancelRowUpdates()
void
clearWarnings()
void
close()
void
deleteRow()
int
findColumn(String columnLabel)
boolean
first()
Array
getArray(int columnIndex)
Array
getArray(String columnLabel)
InputStream
getAsciiStream(int columnIndex)
InputStream
getAsciiStream(String columnLabel)
BigDecimal
getBigDecimal(int columnIndex)
BigDecimal
getBigDecimal(int columnIndex, int scale)
BigDecimal
getBigDecimal(String columnLabel)
BigDecimal
getBigDecimal(String columnLabel, int scale)
InputStream
getBinaryStream(int columnIndex)
InputStream
getBinaryStream(String columnLabel)
Blob
getBlob(int columnIndex)
Blob
getBlob(String columnLabel)
boolean
getBoolean(int columnIndex)
boolean
getBoolean(String columnLabel)
byte
getByte(int columnIndex)
byte
getByte(String columnLabel)
byte[]
getBytes(int columnIndex)
byte[]
getBytes(String columnLabel)
Reader
getCharacterStream(int columnIndex)
Reader
getCharacterStream(String columnLabel)
Clob
getClob(int columnIndex)
Clob
getClob(String columnLabel)
int
getConcurrency()
String
getCursorName()
Date
getDate(int columnIndex)
Date
getDate(int columnIndex, Calendar cal)
Date
getDate(String columnLabel)
Date
getDate(String columnLabel, Calendar cal)
double
getDouble(int columnIndex)
double
getDouble(String columnLabel)
int
getFetchDirection()
int
getFetchSize()
float
getFloat(int columnIndex)
float
getFloat(String columnLabel)
int
getHoldability()
int
getInt(int columnIndex)
int
getInt(String columnLabel)
long
getLong(int columnIndex)
long
getLong(String columnLabel)
ResultSetMetaData
getMetaData()
Reader
getNCharacterStream(int columnIndex)
Reader
getNCharacterStream(String columnLabel)
NClob
getNClob(int columnIndex)
NClob
getNClob(String columnLabel)
String
getNString(int columnIndex)
String
getNString(String columnLabel)
Object
getObject(int columnIndex)
<T> T
getObject(int columnIndex, Class<T> type)
Object
getObject(int columnIndex, Map<String,Class<?>> map)
Object
getObject(String columnLabel)
<T> T
getObject(String columnLabel, Class<T> type)
Object
getObject(String columnLabel, Map<String,Class<?>> map)
Ref
getRef(int columnIndex)
Ref
getRef(String columnLabel)
int
getRow()
RowId
getRowId(int columnIndex)
RowId
getRowId(String columnLabel)
short
getShort(int columnIndex)
short
getShort(String columnLabel)
SQLXML
getSQLXML(int columnIndex)
SQLXML
getSQLXML(String columnLabel)
Statement
getStatement()
String
getString(int columnIndex)
String
getString(String columnLabel)
Time
getTime(int columnIndex)
Time
getTime(int columnIndex, Calendar cal)
Time
getTime(String columnLabel)
Time
getTime(String columnLabel, Calendar cal)
Timestamp
getTimestamp(int columnIndex)
Timestamp
getTimestamp(int columnIndex, Calendar cal)
Timestamp
getTimestamp(String columnLabel)
Timestamp
getTimestamp(String columnLabel, Calendar cal)
int
getType()
InputStream
getUnicodeStream(int columnIndex)
InputStream
getUnicodeStream(String columnLabel)
URL
getURL(int columnIndex)
URL
getURL(String columnLabel)
SQLWarning
getWarnings()
void
insertRow()
boolean
isAfterLast()
boolean
isBeforeFirst()
boolean
isClosed()
boolean
isFirst()
boolean
isLast()
boolean
isWrapperFor(Class<?> iface)
boolean
last()
void
moveToCurrentRow()
void
moveToInsertRow()
boolean
next()
boolean
previous()
void
refreshRow()
boolean
relative(int rows)
boolean
rowDeleted()
boolean
rowInserted()
boolean
rowUpdated()
void
setFetchDirection(int direction)
void
setFetchSize(int rows)
<T> T
unwrap(Class<T> iface)
void
updateArray(int columnIndex, Array x)
void
updateArray(String columnLabel, Array x)
void
updateAsciiStream(int columnIndex, InputStream x)
void
updateAsciiStream(int columnIndex, InputStream x, int length)
void
updateAsciiStream(int columnIndex, InputStream x, long length)
void
updateAsciiStream(String columnLabel, InputStream x)
void
updateAsciiStream(String columnLabel, InputStream x, int length)
void
updateAsciiStream(String columnLabel, InputStream x, long length)
void
updateBigDecimal(int columnIndex, BigDecimal x)
void
updateBigDecimal(String columnLabel, BigDecimal x)
void
updateBinaryStream(int columnIndex, InputStream x)
void
updateBinaryStream(int columnIndex, InputStream x, int length)
void
updateBinaryStream(int columnIndex, InputStream x, long length)
void
updateBinaryStream(String columnLabel, InputStream x)
void
updateBinaryStream(String columnLabel, InputStream x, int length)
void
updateBinaryStream(String columnLabel, InputStream x, long length)
void
updateBlob(int columnIndex, InputStream inputStream)
void
updateBlob(int columnIndex, InputStream inputStream, long length)
void
updateBlob(int columnIndex, Blob x)
void
updateBlob(String columnLabel, InputStream inputStream)
void
updateBlob(String columnLabel, InputStream inputStream, long length)
void
updateBlob(String columnLabel, Blob x)
void
updateBoolean(int columnIndex, boolean x)
void
updateBoolean(String columnLabel, boolean x)
void
updateByte(int columnIndex, byte x)
void
updateByte(String columnLabel, byte x)
void
updateBytes(int columnIndex, byte[] x)
void
updateBytes(String columnLabel, byte[] x)
void
updateCharacterStream(int columnIndex, Reader x)
void
updateCharacterStream(int columnIndex, Reader x, int length)
void
updateCharacterStream(int columnIndex, Reader x, long length)
void
updateCharacterStream(String columnLabel, Reader reader)
void
updateCharacterStream(String columnLabel, Reader reader, int length)
void
updateCharacterStream(String columnLabel, Reader reader, long length)
void
updateClob(int columnIndex, Reader reader)
void
updateClob(int columnIndex, Reader reader, long length)
void
updateClob(int columnIndex, Clob x)
void
updateClob(String columnLabel, Reader reader)
void
updateClob(String columnLabel, Reader reader, long length)
void
updateClob(String columnLabel, Clob x)
void
updateDate(int columnIndex, Date x)
void
updateDate(String columnLabel, Date x)
void
updateDouble(int columnIndex, double x)
void
updateDouble(String columnLabel, double x)
void
updateFloat(int columnIndex, float x)
void
updateFloat(String columnLabel, float x)
void
updateInt(int columnIndex, int x)
void
updateInt(String columnLabel, int x)
void
updateLong(int columnIndex, long x)
void
updateLong(String columnLabel, long x)
void
updateNCharacterStream(int columnIndex, Reader x)
void
updateNCharacterStream(int columnIndex, Reader x, long length)
void
updateNCharacterStream(String columnLabel, Reader reader)
void
updateNCharacterStream(String columnLabel, Reader reader, long length)
void
updateNClob(int columnIndex, Reader reader)
void
updateNClob(int columnIndex, Reader reader, long length)
void
updateNClob(int columnIndex, NClob nClob)
void
updateNClob(String columnLabel, Reader reader)
void
updateNClob(String columnLabel, Reader reader, long length)
void
updateNClob(String columnLabel, NClob nClob)
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 x)
void
updateRef(String columnLabel, Ref x)
void
updateRow()
void
updateRowId(int columnIndex, RowId x)
void
updateRowId(String columnLabel, RowId x)
void
updateShort(int columnIndex, short x)
void
updateShort(String columnLabel, short x)
void
updateSQLXML(int columnIndex, SQLXML xmlObject)
void
updateSQLXML(String columnLabel, SQLXML xmlObject)
void
updateString(int columnIndex, String x)
void
updateString(String columnLabel, String x)
void
updateTime(int columnIndex, Time x)
void
updateTime(String columnLabel, Time x)
void
updateTimestamp(int columnIndex, Timestamp x)
void
updateTimestamp(String columnLabel, Timestamp x)
boolean
wasNull()
-
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 Detail
-
ImportDumpResultSet
public ImportDumpResultSet(Importer importer, DatabaseMetaData databaseMetaData, TableMetaData tableMetaData, List<String> selectedColumns)
-
-
Method Detail
-
getBoolean
public boolean getBoolean(int columnIndex)
- Specified by:
getBoolean
in interfaceResultSet
-
getBigDecimal
public BigDecimal getBigDecimal(int columnIndex, int scale)
- Specified by:
getBigDecimal
in interfaceResultSet
-
getBigDecimal
public BigDecimal getBigDecimal(int columnIndex)
- Specified by:
getBigDecimal
in interfaceResultSet
-
getTimestamp
public Timestamp getTimestamp(int columnIndex)
- Specified by:
getTimestamp
in interfaceResultSet
-
close
public void close()
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceResultSet
-
isWrapperFor
public boolean isWrapperFor(Class<?> iface)
- Specified by:
isWrapperFor
in interfaceWrapper
-
getAsciiStream
public InputStream getAsciiStream(int columnIndex)
- Specified by:
getAsciiStream
in interfaceResultSet
-
getUnicodeStream
public InputStream getUnicodeStream(int columnIndex)
- Specified by:
getUnicodeStream
in interfaceResultSet
-
getBinaryStream
public InputStream getBinaryStream(int columnIndex)
- Specified by:
getBinaryStream
in interfaceResultSet
-
getBoolean
public boolean getBoolean(String columnLabel)
- Specified by:
getBoolean
in interfaceResultSet
-
getDouble
public double getDouble(String columnLabel)
-
getBigDecimal
public BigDecimal getBigDecimal(String columnLabel, int scale)
- Specified by:
getBigDecimal
in interfaceResultSet
-
getTimestamp
public Timestamp getTimestamp(String columnLabel)
- Specified by:
getTimestamp
in interfaceResultSet
-
getAsciiStream
public InputStream getAsciiStream(String columnLabel)
- Specified by:
getAsciiStream
in interfaceResultSet
-
getUnicodeStream
public InputStream getUnicodeStream(String columnLabel)
- Specified by:
getUnicodeStream
in interfaceResultSet
-
getBinaryStream
public InputStream getBinaryStream(String columnLabel)
- Specified by:
getBinaryStream
in interfaceResultSet
-
getWarnings
public SQLWarning getWarnings()
- Specified by:
getWarnings
in interfaceResultSet
-
clearWarnings
public void clearWarnings()
- Specified by:
clearWarnings
in interfaceResultSet
-
getCursorName
public String getCursorName()
- Specified by:
getCursorName
in interfaceResultSet
-
getMetaData
public ResultSetMetaData getMetaData()
- Specified by:
getMetaData
in interfaceResultSet
-
findColumn
public int findColumn(String columnLabel)
- Specified by:
findColumn
in interfaceResultSet
-
getCharacterStream
public Reader getCharacterStream(int columnIndex)
- Specified by:
getCharacterStream
in interfaceResultSet
-
getCharacterStream
public Reader getCharacterStream(String columnLabel)
- Specified by:
getCharacterStream
in interfaceResultSet
-
getBigDecimal
public BigDecimal getBigDecimal(String columnLabel)
- Specified by:
getBigDecimal
in interfaceResultSet
-
isBeforeFirst
public boolean isBeforeFirst()
- Specified by:
isBeforeFirst
in interfaceResultSet
-
isAfterLast
public boolean isAfterLast()
- Specified by:
isAfterLast
in interfaceResultSet
-
beforeFirst
public void beforeFirst()
- Specified by:
beforeFirst
in interfaceResultSet
-
setFetchDirection
public void setFetchDirection(int direction)
- Specified by:
setFetchDirection
in interfaceResultSet
-
getFetchDirection
public int getFetchDirection()
- Specified by:
getFetchDirection
in interfaceResultSet
-
setFetchSize
public void setFetchSize(int rows)
- Specified by:
setFetchSize
in interfaceResultSet
-
getFetchSize
public int getFetchSize()
- Specified by:
getFetchSize
in interfaceResultSet
-
getConcurrency
public int getConcurrency()
- Specified by:
getConcurrency
in interfaceResultSet
-
rowUpdated
public boolean rowUpdated()
- Specified by:
rowUpdated
in interfaceResultSet
-
rowInserted
public boolean rowInserted()
- Specified by:
rowInserted
in interfaceResultSet
-
rowDeleted
public boolean rowDeleted()
- Specified by:
rowDeleted
in interfaceResultSet
-
updateNull
public void updateNull(int columnIndex)
- Specified by:
updateNull
in interfaceResultSet
-
updateBoolean
public void updateBoolean(int columnIndex, boolean x)
- Specified by:
updateBoolean
in interfaceResultSet
-
updateByte
public void updateByte(int columnIndex, byte x)
- Specified by:
updateByte
in interfaceResultSet
-
updateShort
public void updateShort(int columnIndex, short x)
- Specified by:
updateShort
in interfaceResultSet
-
updateInt
public void updateInt(int columnIndex, int x)
-
updateLong
public void updateLong(int columnIndex, long x)
- Specified by:
updateLong
in interfaceResultSet
-
updateFloat
public void updateFloat(int columnIndex, float x)
- Specified by:
updateFloat
in interfaceResultSet
-
updateDouble
public void updateDouble(int columnIndex, double x)
- Specified by:
updateDouble
in interfaceResultSet
-
updateBigDecimal
public void updateBigDecimal(int columnIndex, BigDecimal x)
- Specified by:
updateBigDecimal
in interfaceResultSet
-
updateString
public void updateString(int columnIndex, String x)
- Specified by:
updateString
in interfaceResultSet
-
updateBytes
public void updateBytes(int columnIndex, byte[] x)
- Specified by:
updateBytes
in interfaceResultSet
-
updateDate
public void updateDate(int columnIndex, Date x)
- Specified by:
updateDate
in interfaceResultSet
-
updateTime
public void updateTime(int columnIndex, Time x)
- Specified by:
updateTime
in interfaceResultSet
-
updateTimestamp
public void updateTimestamp(int columnIndex, Timestamp x)
- Specified by:
updateTimestamp
in interfaceResultSet
-
updateAsciiStream
public void updateAsciiStream(int columnIndex, InputStream x, int length)
- Specified by:
updateAsciiStream
in interfaceResultSet
-
updateBinaryStream
public void updateBinaryStream(int columnIndex, InputStream x, int length)
- Specified by:
updateBinaryStream
in interfaceResultSet
-
updateCharacterStream
public void updateCharacterStream(int columnIndex, Reader x, int length)
- Specified by:
updateCharacterStream
in interfaceResultSet
-
updateObject
public void updateObject(int columnIndex, Object x, int scaleOrLength)
- Specified by:
updateObject
in interfaceResultSet
-
updateObject
public void updateObject(int columnIndex, Object x)
- Specified by:
updateObject
in interfaceResultSet
-
updateNull
public void updateNull(String columnLabel)
- Specified by:
updateNull
in interfaceResultSet
-
updateBoolean
public void updateBoolean(String columnLabel, boolean x)
- Specified by:
updateBoolean
in interfaceResultSet
-
updateByte
public void updateByte(String columnLabel, byte x)
- Specified by:
updateByte
in interfaceResultSet
-
updateShort
public void updateShort(String columnLabel, short x)
- Specified by:
updateShort
in interfaceResultSet
-
updateInt
public void updateInt(String columnLabel, int x)
-
updateLong
public void updateLong(String columnLabel, long x)
- Specified by:
updateLong
in interfaceResultSet
-
updateFloat
public void updateFloat(String columnLabel, float x)
- Specified by:
updateFloat
in interfaceResultSet
-
updateDouble
public void updateDouble(String columnLabel, double x)
- Specified by:
updateDouble
in interfaceResultSet
-
updateBigDecimal
public void updateBigDecimal(String columnLabel, BigDecimal x)
- Specified by:
updateBigDecimal
in interfaceResultSet
-
updateString
public void updateString(String columnLabel, String x)
- Specified by:
updateString
in interfaceResultSet
-
updateBytes
public void updateBytes(String columnLabel, byte[] x)
- Specified by:
updateBytes
in interfaceResultSet
-
updateDate
public void updateDate(String columnLabel, Date x)
- Specified by:
updateDate
in interfaceResultSet
-
updateTime
public void updateTime(String columnLabel, Time x)
- Specified by:
updateTime
in interfaceResultSet
-
updateTimestamp
public void updateTimestamp(String columnLabel, Timestamp x)
- Specified by:
updateTimestamp
in interfaceResultSet
-
updateAsciiStream
public void updateAsciiStream(String columnLabel, InputStream x, int length)
- Specified by:
updateAsciiStream
in interfaceResultSet
-
updateBinaryStream
public void updateBinaryStream(String columnLabel, InputStream x, int length)
- Specified by:
updateBinaryStream
in interfaceResultSet
-
updateCharacterStream
public void updateCharacterStream(String columnLabel, Reader reader, int length)
- Specified by:
updateCharacterStream
in interfaceResultSet
-
updateObject
public void updateObject(String columnLabel, Object x, int scaleOrLength)
- Specified by:
updateObject
in interfaceResultSet
-
updateObject
public void updateObject(String columnLabel, Object x)
- Specified by:
updateObject
in interfaceResultSet
-
refreshRow
public void refreshRow()
- Specified by:
refreshRow
in interfaceResultSet
-
cancelRowUpdates
public void cancelRowUpdates()
- Specified by:
cancelRowUpdates
in interfaceResultSet
-
moveToInsertRow
public void moveToInsertRow()
- Specified by:
moveToInsertRow
in interfaceResultSet
-
moveToCurrentRow
public void moveToCurrentRow()
- Specified by:
moveToCurrentRow
in interfaceResultSet
-
getStatement
public Statement getStatement()
- Specified by:
getStatement
in interfaceResultSet
-
getTimestamp
public Timestamp getTimestamp(int columnIndex, Calendar cal)
- Specified by:
getTimestamp
in interfaceResultSet
-
getTimestamp
public Timestamp getTimestamp(String columnLabel, Calendar cal)
- Specified by:
getTimestamp
in interfaceResultSet
-
updateRef
public void updateRef(int columnIndex, Ref x)
-
updateBlob
public void updateBlob(int columnIndex, Blob x)
- Specified by:
updateBlob
in interfaceResultSet
-
updateBlob
public void updateBlob(String columnLabel, Blob x)
- Specified by:
updateBlob
in interfaceResultSet
-
updateClob
public void updateClob(int columnIndex, Clob x)
- Specified by:
updateClob
in interfaceResultSet
-
updateClob
public void updateClob(String columnLabel, Clob x)
- Specified by:
updateClob
in interfaceResultSet
-
updateArray
public void updateArray(int columnIndex, Array x)
- Specified by:
updateArray
in interfaceResultSet
-
updateArray
public void updateArray(String columnLabel, Array x)
- Specified by:
updateArray
in interfaceResultSet
-
updateRowId
public void updateRowId(int columnIndex, RowId x)
- Specified by:
updateRowId
in interfaceResultSet
-
updateRowId
public void updateRowId(String columnLabel, RowId x)
- Specified by:
updateRowId
in interfaceResultSet
-
getHoldability
public int getHoldability()
- Specified by:
getHoldability
in interfaceResultSet
-
updateNString
public void updateNString(int columnIndex, String nString)
- Specified by:
updateNString
in interfaceResultSet
-
updateNString
public void updateNString(String columnLabel, String nString)
- Specified by:
updateNString
in interfaceResultSet
-
updateNClob
public void updateNClob(int columnIndex, NClob nClob)
- Specified by:
updateNClob
in interfaceResultSet
-
updateNClob
public void updateNClob(String columnLabel, NClob nClob)
- Specified by:
updateNClob
in interfaceResultSet
-
updateSQLXML
public void updateSQLXML(int columnIndex, SQLXML xmlObject)
- Specified by:
updateSQLXML
in interfaceResultSet
-
updateSQLXML
public void updateSQLXML(String columnLabel, SQLXML xmlObject)
- Specified by:
updateSQLXML
in interfaceResultSet
-
getNString
public String getNString(int columnIndex)
- Specified by:
getNString
in interfaceResultSet
-
getNString
public String getNString(String columnLabel)
- Specified by:
getNString
in interfaceResultSet
-
getNCharacterStream
public Reader getNCharacterStream(int columnIndex)
- Specified by:
getNCharacterStream
in interfaceResultSet
-
getNCharacterStream
public Reader getNCharacterStream(String columnLabel)
- Specified by:
getNCharacterStream
in interfaceResultSet
-
updateNCharacterStream
public void updateNCharacterStream(int columnIndex, Reader x, long length)
- Specified by:
updateNCharacterStream
in interfaceResultSet
-
updateNCharacterStream
public void updateNCharacterStream(String columnLabel, Reader reader, long length)
- Specified by:
updateNCharacterStream
in interfaceResultSet
-
updateAsciiStream
public void updateAsciiStream(int columnIndex, InputStream x, long length)
- Specified by:
updateAsciiStream
in interfaceResultSet
-
updateBinaryStream
public void updateBinaryStream(int columnIndex, InputStream x, long length)
- Specified by:
updateBinaryStream
in interfaceResultSet
-
updateCharacterStream
public void updateCharacterStream(int columnIndex, Reader x, long length)
- Specified by:
updateCharacterStream
in interfaceResultSet
-
updateAsciiStream
public void updateAsciiStream(String columnLabel, InputStream x, long length)
- Specified by:
updateAsciiStream
in interfaceResultSet
-
updateBinaryStream
public void updateBinaryStream(String columnLabel, InputStream x, long length)
- Specified by:
updateBinaryStream
in interfaceResultSet
-
updateCharacterStream
public void updateCharacterStream(String columnLabel, Reader reader, long length)
- Specified by:
updateCharacterStream
in interfaceResultSet
-
updateBlob
public void updateBlob(int columnIndex, InputStream inputStream, long length)
- Specified by:
updateBlob
in interfaceResultSet
-
updateBlob
public void updateBlob(String columnLabel, InputStream inputStream, long length)
- Specified by:
updateBlob
in interfaceResultSet
-
updateClob
public void updateClob(int columnIndex, Reader reader, long length)
- Specified by:
updateClob
in interfaceResultSet
-
updateClob
public void updateClob(String columnLabel, Reader reader, long length)
- Specified by:
updateClob
in interfaceResultSet
-
updateNClob
public void updateNClob(int columnIndex, Reader reader, long length)
- Specified by:
updateNClob
in interfaceResultSet
-
updateNClob
public void updateNClob(String columnLabel, Reader reader, long length)
- Specified by:
updateNClob
in interfaceResultSet
-
updateNCharacterStream
public void updateNCharacterStream(int columnIndex, Reader x)
- Specified by:
updateNCharacterStream
in interfaceResultSet
-
updateNCharacterStream
public void updateNCharacterStream(String columnLabel, Reader reader)
- Specified by:
updateNCharacterStream
in interfaceResultSet
-
updateAsciiStream
public void updateAsciiStream(int columnIndex, InputStream x)
- Specified by:
updateAsciiStream
in interfaceResultSet
-
updateBinaryStream
public void updateBinaryStream(int columnIndex, InputStream x)
- Specified by:
updateBinaryStream
in interfaceResultSet
-
updateCharacterStream
public void updateCharacterStream(int columnIndex, Reader x)
- Specified by:
updateCharacterStream
in interfaceResultSet
-
updateAsciiStream
public void updateAsciiStream(String columnLabel, InputStream x)
- Specified by:
updateAsciiStream
in interfaceResultSet
-
updateBinaryStream
public void updateBinaryStream(String columnLabel, InputStream x)
- Specified by:
updateBinaryStream
in interfaceResultSet
-
updateCharacterStream
public void updateCharacterStream(String columnLabel, Reader reader)
- Specified by:
updateCharacterStream
in interfaceResultSet
-
updateBlob
public void updateBlob(int columnIndex, InputStream inputStream)
- Specified by:
updateBlob
in interfaceResultSet
-
updateBlob
public void updateBlob(String columnLabel, InputStream inputStream)
- Specified by:
updateBlob
in interfaceResultSet
-
updateClob
public void updateClob(int columnIndex, Reader reader)
- Specified by:
updateClob
in interfaceResultSet
-
updateClob
public void updateClob(String columnLabel, Reader reader)
- Specified by:
updateClob
in interfaceResultSet
-
updateNClob
public void updateNClob(int columnIndex, Reader reader)
- Specified by:
updateNClob
in interfaceResultSet
-
updateNClob
public void updateNClob(String columnLabel, Reader reader)
- Specified by:
updateNClob
in interfaceResultSet
-
getObject
public <T> T getObject(int columnIndex, Class<T> type)
-
-