java.lang.AutoCloseable
, java.sql.ResultSet
, java.sql.Wrapper
, javax.sql.RowSet
, javax.sql.rowset.JdbcRowSet
, javax.sql.rowset.Joinable
@Deprecated
public class JdbcRowSetImpl
extends java.lang.Object
implements javax.sql.rowset.JdbcRowSet
Modifier and Type | Method | Description |
---|---|---|
boolean |
absolute(int i) |
Deprecated.
Moves the cursor to the given row number in this ResultSet object
|
void |
addRowSetListener(javax.sql.RowSetListener rsl) |
Deprecated.
Registers the given listener so that it will be notified of events
that occur on this RowSet object
|
void |
afterLast() |
Deprecated.
Moves the cursor to the end of this ResultSet object, just
after the last row
|
void |
beforeFirst() |
Deprecated.
Moves the cursor to the front of this ResultSet object,
just before the first row
|
void |
cancelRowUpdates() |
Deprecated.
Cancels the updates made to the current row in this ResultSet object and
notifies listeners that a row has changed.
|
void |
clearParameters() |
Deprecated.
Clears the parameters set for this RowSet object's command.
|
void |
clearWarnings() |
Deprecated.
Clears all warnings reported on this rowset's ResultSet object
|
void |
close() |
Deprecated.
Releases this rowset's ResultSet object's database and JDBC resources
immediately instead of waiting for this to happen when it is
automatically closed
|
void |
commit() |
Deprecated.
Commits all updates in this JdbcRowSet object by wrapping the internal
Connection object and calling its commit method.
|
void |
deleteRow() |
Deprecated.
Deletes the current row from this rowset's ResultSet object and from the
underlying database and also notifies listeners that a row has changed
|
void |
execute() |
Deprecated.
Creates the internal ResultSet object for which this JdbcRowSet object is
a wrapper, effectively making the result set a JavaBeans component.
|
boolean |
first() |
Deprecated.
Moves the cursor to the first row in this ResultSet object
|
java.sql.Array |
getArray(int columnIndex) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as an Array object in the Java programming language.
|
java.sql.Array |
getArray(java.lang.String columnLabel) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as an Array object in the Java programming language.
|
java.io.InputStream |
getAsciiStream(int columnIndex) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a stream of ASCII characters.
|
java.io.InputStream |
getAsciiStream(java.lang.String columnLabel) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a stream of ASCII characters.
|
boolean |
getAutoCommit() |
Deprecated.
Returns the auto-commit status with this JdbcRowSet
|
java.math.BigDecimal |
getBigDecimal(int columnIndex) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a java.math.BigDecimal with full precision.
|
java.math.BigDecimal |
getBigDecimal(int columnIndex,
int scale) |
Deprecated.
|
java.math.BigDecimal |
getBigDecimal(java.lang.String columnLabel) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a java.math.BigDecimal with full precision.
|
java.math.BigDecimal |
getBigDecimal(java.lang.String columnLabel,
int scale) |
Deprecated.
|
java.io.InputStream |
getBinaryStream(int columnIndex) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a stream of uninterpreted bytes.
|
java.io.InputStream |
getBinaryStream(java.lang.String columnLabel) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a stream of uninterpreted bytes.
|
java.sql.Blob |
getBlob(int columnIndex) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a Blob object in the Java programming language.
|
java.sql.Blob |
getBlob(java.lang.String columnLabel) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a Blob object in the Java programming language.
|
boolean |
getBoolean(int columnIndex) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a boolean in the Java programming language.
|
boolean |
getBoolean(java.lang.String columnLabel) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a boolean in the Java programming language.
|
byte |
getByte(int columnIndex) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a byte in the Java programming language.
|
byte |
getByte(java.lang.String columnLabel) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a byte in the Java programming language.
|
byte[] |
getBytes(int columnIndex) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a byte array in the Java programming language.
|
byte[] |
getBytes(java.lang.String columnLabel) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a byte array in the Java programming language.
|
java.io.Reader |
getCharacterStream(int columnIndex) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a java.io.Reader object.
|
java.io.Reader |
getCharacterStream(java.lang.String columnLabel) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a java.io.Reader object.
|
java.sql.Clob |
getClob(int columnIndex) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a Clob object in the Java programming language.
|
java.sql.Clob |
getClob(java.lang.String columnLabel) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a Clob object in the Java programming language.
|
java.lang.String |
getCommand() |
Deprecated.
Retrieves this RowSet object's command property
|
int |
getConcurrency() |
Deprecated.
Retrieves the concurrency mode of this ResultSet object.
|
java.lang.String |
getCursorName() |
Deprecated.
Gets the name of the SQL cursor used by this rowset's ResultSet object
|
java.lang.String |
getDataSourceName() |
Deprecated.
Retrieves the logical name that identifies the data source for
this RowSet object
|
java.sql.Date |
getDate(int columnIndex) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a java.sql.Date object in the Java programming
language.
|
java.sql.Date |
getDate(int columnIndex,
java.util.Calendar cal) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a java.sql.Date object in the Java programming
language.
|
java.sql.Date |
getDate(java.lang.String columnLabel) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a java.sql.Date object in the Java programming
language.
|
java.sql.Date |
getDate(java.lang.String columnLabel,
java.util.Calendar cal) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a java.sql.Date object in the Java programming
language.
|
double |
getDouble(int columnIndex) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a double in the Java programming language.
|
double |
getDouble(java.lang.String columnLabel) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a double in the Java programming language.
|
boolean |
getEscapeProcessing() |
Deprecated.
Retrieves whether escape processing is enabled for this RowSet object.
|
int |
getFetchDirection() |
Deprecated.
Retrieves the fetch direction for this ResultSet object
|
int |
getFetchSize() |
Deprecated.
Retrieves the fetch size for this ResultSet object.
|
float |
getFloat(int columnIndex) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a float in the Java programming language.
|
float |
getFloat(java.lang.String columnLabel) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a float in the Java programming language.
|
int |
getHoldability() |
Deprecated.
Retrieves the holdability of this ResultSet object
|
int |
getInt(int columnIndex) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as an int in the Java programming language.
|
int |
getInt(java.lang.String columnLabel) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as an int in the Java programming language.
|
long |
getLong(int columnIndex) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a long in the Java programming language.
|
long |
getLong(java.lang.String columnLabel) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a long in the Java programming language.
|
int[] |
getMatchColumnIndexes() |
Deprecated.
Retrieves the column id as int array that was set using
setMatchColumn(int []) for this rowset
|
java.lang.String[] |
getMatchColumnNames() |
Deprecated.
Retrieves the column name as String array that was set using
setMatchColumn(String []) for this rowset
|
int |
getMaxFieldSize() |
Deprecated.
Retrieves the maximum number of bytes that may be returned for
certain column values
|
int |
getMaxRows() |
Deprecated.
Retrieves the maximum number of rows that this RowSet object can contain
|
java.sql.ResultSetMetaData |
getMetaData() |
Deprecated.
Retrieves the number, types and properties of this rowset's
ResultSet object's columns.
|
java.io.Reader |
getNCharacterStream(int columnIndex) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a java.io.Reader object.
|
java.io.Reader |
getNCharacterStream(java.lang.String columnLabel) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a java.io.Reader object.
|
java.sql.NClob |
getNClob(int columnIndex) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a NClob object in the Java programming language.
|
java.sql.NClob |
getNClob(java.lang.String columnLabel) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a NClob object in the Java programming language.
|
java.lang.String |
getNString(int columnIndex) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a String in the Java programming language.
|
java.lang.String |
getNString(java.lang.String columnLabel) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a String in the Java programming language.
|
java.lang.Object |
getObject(int columnIndex) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as an Object in the Java programming language.
|
<T> T |
getObject(int columnIndex,
java.lang.Class<T> type) |
Deprecated.
|
java.lang.Object |
getObject(int columnIndex,
java.util.Map<java.lang.String,java.lang.Class<?>> map) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as an Object in the Java programming language.
|
java.lang.Object |
getObject(java.lang.String columnLabel) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as an Object in the Java programming language.
|
<T> T |
getObject(java.lang.String columnLabel,
java.lang.Class<T> type) |
Deprecated.
|
java.lang.Object |
getObject(java.lang.String columnLabel,
java.util.Map<java.lang.String,java.lang.Class<?>> map) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as an Object in the Java programming language.
|
java.lang.String |
getPassword() |
Deprecated.
Retrieves the password used to create a database connection.
|
int |
getQueryTimeout() |
Deprecated.
Retrieves the maximum number of seconds the driver will wait for
a statement to execute
|
java.sql.Ref |
getRef(int columnIndex) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a Ref object in the Java programming language.
|
java.sql.Ref |
getRef(java.lang.String columnLabel) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a Ref object in the Java programming language.
|
int |
getRow() |
Deprecated.
Retrieves the current row number
|
java.sql.RowId |
getRowId(int columnIndex) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a java.sql.RowId object in the Java programming
language.
|
java.sql.RowId |
getRowId(java.lang.String columnLabel) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a java.sql.RowId object in the Java programming
language.
|
javax.sql.rowset.RowSetWarning |
getRowSetWarnings() |
Deprecated.
Return the RowSetWarning object for the current row of a JdbcRowSetImpl
|
short |
getShort(int columnIndex) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a short in the Java programming language.
|
short |
getShort(java.lang.String columnLabel) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a short in the Java programming language.
|
boolean |
getShowDeleted() |
Deprecated.
See javax.sql.rowset.JdbcRowSet
|
java.sql.SQLXML |
getSQLXML(int columnIndex) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet as a java.sql.SQLXML object in the Java programming language.
|
java.sql.SQLXML |
getSQLXML(java.lang.String columnLabel) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet as a java.sql.SQLXML object in the Java programming language.
|
java.sql.Statement |
getStatement() |
Deprecated.
Returns the Statement object that produced this ResultSet object.
|
java.lang.String |
getString(int columnIndex) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a String in the Java programming language.
|
java.lang.String |
getString(java.lang.String columnLabel) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a String in the Java programming language.
|
java.sql.Time |
getTime(int columnIndex) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a java.sql.Time object in the Java programming
language.
|
java.sql.Time |
getTime(int columnIndex,
java.util.Calendar cal) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a java.sql.Time object in the Java programming
language.
|
java.sql.Time |
getTime(java.lang.String columnLabel) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a java.sql.Time object in the Java programming
language.
|
java.sql.Time |
getTime(java.lang.String columnLabel,
java.util.Calendar cal) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a java.sql.Time object in the Java programming
language.
|
java.sql.Timestamp |
getTimestamp(int columnIndex) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a java.sql.Timestamp object in the Java programming
language.
|
java.sql.Timestamp |
getTimestamp(int columnIndex,
java.util.Calendar cal) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a java.sql.Timestamp object in the Java programming
language.
|
java.sql.Timestamp |
getTimestamp(java.lang.String columnLabel) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a java.sql.Timestamp object in the Java programming
language.
|
java.sql.Timestamp |
getTimestamp(java.lang.String columnLabel,
java.util.Calendar cal) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a java.sql.Timestamp object in the Java programming
language.
|
int |
getTransactionIsolation() |
Deprecated.
Retrieves the transaction isolation level set for this RowSet object
|
int |
getType() |
Deprecated.
Retrieves the type of this ResultSet object
|
java.util.Map<java.lang.String,java.lang.Class<?>> |
getTypeMap() |
Deprecated.
Retrieves the Map object associated with this RowSet object, which
specifies the custom mapping of SQL user-defined types, if any.
|
java.io.InputStream |
getUnicodeStream(int columnIndex) |
Deprecated.
|
java.io.InputStream |
getUnicodeStream(java.lang.String columnLabel) |
Deprecated.
|
java.lang.String |
getUrl() |
Deprecated.
Retrieves the url property this RowSet object will use to create
a connection if it uses the DriverManager instead of a DataSource
object to establish the connection
|
java.net.URL |
getURL(int columnIndex) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a java.net.URL object in the Java programming language.
|
java.net.URL |
getURL(java.lang.String columnLabel) |
Deprecated.
Retrieves the value of the designated column in the current row of this
ResultSet object as a java.net.URL object in the Java programming language.
|
java.lang.String |
getUsername() |
Deprecated.
Retrieves the username used to create a database connection for
this RowSet object
|
java.sql.SQLWarning |
getWarnings() |
Deprecated.
Returns the first warning reported by calls on this rowset's
ResultSet object.
|
boolean |
isAfterLast() |
Deprecated.
Retrieves whether the cursor is after the last row in this ResultSet object
|
boolean |
isBeforeFirst() |
Deprecated.
Retrieves whether the cursor is before the first row in this
ResultSet object
|
boolean |
isClosed() |
Deprecated.
Retrieves whether this ResultSet object has been closed.
|
boolean |
isFirst() |
Deprecated.
Retrieves whether the cursor is on the first row of this ResultSet object
|
boolean |
isLast() |
Deprecated.
Retrieves whether the cursor is on the last row of this ResultSet object
|
boolean |
isReadOnly() |
Deprecated.
Retrieves whether this RowSet object is read-only
|
boolean |
isWrapperFor(java.lang.Class<?> iface) |
Deprecated.
Returns true if this either implements the interface argument
or is directly or indirectly a wrapper for an object that does.
|
boolean |
last() |
Deprecated.
Moves the cursor to the last row in this ResultSet object
|
void |
moveToCurrentRow() |
Deprecated.
Moves the cursor to the remembered cursor position, usually the current row
|
void |
moveToInsertRow() |
Deprecated.
Moves the cursor to the insert row.
|
boolean |
next() |
Deprecated.
Moves the cursor down one row from its current position
|
boolean |
previous() |
Deprecated.
Moves the cursor to the previous row in this ResultSet object
|
boolean |
relative(int i) |
Deprecated.
Moves the cursor a relative number of rows, either positive or negative
|
void |
removeRowSetListener(javax.sql.RowSetListener rsl) |
Deprecated.
Removes the specified listener from the list of components that will be
notified when an event occurs on this RowSet object
|
void |
rollback() |
Deprecated.
Rolls back all the updates in this JdbcRowSet object by wrapping the
internal Connection object and calling its rollback method.
|
void |
rollback(java.sql.Savepoint s) |
Deprecated.
Rollbacks all the updates in the JdbcRowSet back to the last Savepoint
transaction marker
|
boolean |
rowDeleted() |
Deprecated.
Retrieves whether a row has been deleted
|
boolean |
rowInserted() |
Deprecated.
Retrieves whether the current row has had an insertion
|
boolean |
rowUpdated() |
Deprecated.
Retrieves whether the current row has been updated
|
void |
setArray(int i,
java.sql.Array x) |
Deprecated.
Sets the designated parameter in this RowSet object's command with
the given Array value.
|
void |
setAsciiStream(int parameterIndex,
java.io.InputStream x) |
Deprecated.
Sets the designated parameter in this RowSet object's command to the
given input stream.
|
void |
setAsciiStream(int parameterIndex,
java.io.InputStream x,
int length) |
Deprecated.
Sets the designated parameter in this RowSet object's command to the
given java.io.InputStream value.
|
void |
setAsciiStream(java.lang.String parameterName,
java.io.InputStream x) |
Deprecated.
Sets the designated parameter to the given input stream.
|
void |
setAsciiStream(java.lang.String parameterName,
java.io.InputStream x,
int length) |
Deprecated.
Sets the designated parameter to the given input stream.
|
void |
setAutoCommit(boolean autoCommit) |
Deprecated.
Sets auto-commit on the internal Connection object with this JdbcRowSet
|
void |
setBigDecimal(int parameterIndex,
java.math.BigDecimal x) |
Deprecated.
Sets the designated parameter in this RowSet object's command to the
given java.math.BigDeciaml value.
|
void |
setBigDecimal(java.lang.String parameterName,
java.math.BigDecimal x) |
Deprecated.
Sets the designated parameter to the given java.math.BigDecimal value.
|
void |
setBinaryStream(int parameterIndex,
java.io.InputStream x) |
Deprecated.
Sets the designated parameter in this RowSet object's command to the
given input stream.
|
void |
setBinaryStream(int parameterIndex,
java.io.InputStream x,
int length) |
Deprecated.
Sets the designated parameter in this RowSet object's command to the
given java.io.InputStream value.
|
void |
setBinaryStream(java.lang.String parameterName,
java.io.InputStream x) |
Deprecated.
Sets the designated parameter to the given input stream.
|
void |
setBinaryStream(java.lang.String parameterName,
java.io.InputStream x,
int length) |
Deprecated.
Sets the designated parameter to the given input stream, which will have
the specified number of bytes.
|
void |
setBlob(int parameterIndex,
java.io.InputStream inputStream) |
Deprecated.
Sets the designated parameter to a InputStream object.
|
void |
setBlob(int parameterIndex,
java.io.InputStream inputStream,
long length) |
Deprecated.
Sets the designated parameter to a InputStream object.
|
void |
setBlob(int i,
java.sql.Blob x) |
Deprecated.
Sets the designated parameter in this RowSet object's command with
the given Blob value.
|
void |
setBlob(java.lang.String parameterName,
java.io.InputStream inputStream) |
Deprecated.
Sets the designated parameter to a InputStream object.
|
void |
setBlob(java.lang.String parameterName,
java.io.InputStream inputStream,
long length) |
Deprecated.
Sets the designated parameter to a InputStream object.
|
void |
setBlob(java.lang.String parameterName,
java.sql.Blob x) |
Deprecated.
Sets the designated parameter to the given java.sql.Blob object.
|
void |
setBoolean(int parameterIndex,
boolean x) |
Deprecated.
Sets the designated parameter in this RowSet object's command to the
given Java boolean value.
|
void |
setBoolean(java.lang.String parameterName,
boolean x) |
Deprecated.
Sets the designated parameter to the given Java boolean value.
|
void |
setByte(int parameterIndex,
byte x) |
Deprecated.
Sets the designated parameter in this RowSet object's command to the
given Java byte value.
|
void |
setByte(java.lang.String parameterName,
byte x) |
Deprecated.
Sets the designated parameter to the given Java byte value.
|
void |
setBytes(int parameterIndex,
byte[] x) |
Deprecated.
Sets the designated parameter in this RowSet object's command to the
given Java array of byte values.
|
void |
setBytes(java.lang.String parameterName,
byte[] x) |
Deprecated.
Sets the designated parameter to the given Java array of bytes.
|
void |
setCharacterStream(int parameterIndex,
java.io.Reader reader) |
Deprecated.
Sets the designated parameter in this RowSet object's command to the
given Reader object.
|
void |
setCharacterStream(int parameterIndex,
java.io.Reader reader,
int length) |
Deprecated.
Sets the designated parameter in this RowSet object's command to the
given java.io.Reader value.
|
void |
setCharacterStream(java.lang.String parameterName,
java.io.Reader reader) |
Deprecated.
Sets the designated parameter to the given Reader object.
|
void |
setCharacterStream(java.lang.String parameterName,
java.io.Reader reader,
int length) |
Deprecated.
Sets the designated parameter to the given Reader object, which is the
given number of characters long.
|
void |
setClob(int parameterIndex,
java.io.Reader reader) |
Deprecated.
Sets the designated parameter to a Reader object.
|
void |
setClob(int parameterIndex,
java.io.Reader reader,
long length) |
Deprecated.
Sets the designated parameter to a Reader object.
|
void |
setClob(int i,
java.sql.Clob x) |
Deprecated.
Sets the designated parameter in this RowSet object's command with the
given Clob value.
|
void |
setClob(java.lang.String parameterName,
java.io.Reader reader) |
Deprecated.
Sets the designated parameter to a Reader object.
|
void |
setClob(java.lang.String parameterName,
java.io.Reader reader,
long length) |
Deprecated.
Sets the designated parameter to a Reader object.
|
void |
setClob(java.lang.String parameterName,
java.sql.Clob x) |
Deprecated.
Sets the designated parameter to the given java.sql.Clob object.
|
void |
setCommand(java.lang.String s) |
Deprecated.
Sets this RowSet object's command property to the given SQL query.
|
void |
setConcurrency(int c) |
Deprecated.
Sets the concurrency of this RowSet object to the given concurrency level.
|
void |
setDataSourceName(java.lang.String s) |
Deprecated.
Sets the data source name property for this RowSet object to the
given String
|
void |
setDate(int parameterIndex,
java.sql.Date x) |
Deprecated.
Sets the designated parameter in this RowSet object's command to the
given java.sql.Date value.
|
void |
setDate(int parameterIndex,
java.sql.Date x,
java.util.Calendar cal) |
Deprecated.
Sets the designated parameter in this RowSet object's command with
the given java.sql.Date value.
|
void |
setDate(java.lang.String parameterName,
java.sql.Date x) |
Deprecated.
Sets the designated parameter to the given java.sql.Date value using the
default time zone of the virtual machine that is running the application.
|
void |
setDate(java.lang.String parameterName,
java.sql.Date x,
java.util.Calendar cal) |
Deprecated.
Sets the designated parameter to the given java.sql.Date value, using the
given Calendar object.
|
void |
setDouble(int parameterIndex,
double x) |
Deprecated.
Sets the designated parameter in this RowSet object's command to the
given Java double value.
|
void |
setDouble(java.lang.String parameterName,
double x) |
Deprecated.
Sets the designated parameter to the given Java double value.
|
void |
setFetchDirection(int i) |
Deprecated.
Gives a hint as to the direction in which the rows in this ResultSet
object will be processed.
|
void |
setFetchSize(int i) |
Deprecated.
Gives the JDBC driver a hint as to the number of rows that should
be fetched from the database when more rows are needed for this
ResultSet object.
|
void |
setFloat(int parameterIndex,
float x) |
Deprecated.
Sets the designated parameter in this RowSet object's command to the
given Java float value.
|
void |
setFloat(java.lang.String parameterName,
float x) |
Deprecated.
Sets the designated parameter to the given Java float value.
|
void |
setInt(int parameterIndex,
int x) |
Deprecated.
Sets the designated parameter in this RowSet object's command to the
given Java int value.
|
void |
setInt(java.lang.String parameterName,
int x) |
Deprecated.
Sets the designated parameter to the given Java int value.
|
void |
setLong(int parameterIndex,
long x) |
Deprecated.
Sets the designated parameter in this RowSet object's command to the
given Java long value.
|
void |
setLong(java.lang.String parameterName,
long x) |
Deprecated.
Sets the designated parameter to the given Java long value.
|
void |
setMatchColumn(int columnIdx) |
Deprecated.
Sets the designated parameter to the given int object.
|
void |
setMatchColumn(int[] columnIdxes) |
Deprecated.
Sets the designated parameter to the given int array.
|
void |
setMatchColumn(java.lang.String columnName) |
Deprecated.
Sets the designated parameter to the given String object.
|
void |
setMatchColumn(java.lang.String[] columnNames) |
Deprecated.
Sets the designated parameter to the given String array.
|
void |
setMaxFieldSize(int x) |
Deprecated.
Sets the maximum number of bytes that can be returned for a column
value to the given number of bytes.
|
void |
setMaxRows(int n) |
Deprecated.
Sets the maximum number of rows that this RowSet object can contain
to the specified number
|
void |
setNCharacterStream(int parameterIndex,
java.io.Reader value) |
Deprecated.
Sets the designated parameter in this RowSet object's command to
a Reader object.
|
void |
setNCharacterStream(int parameterIndex,
java.io.Reader value,
long length) |
Deprecated.
Sets the designated parameter to a Reader object.
|
void |
setNCharacterStream(java.lang.String parameterName,
java.io.Reader value) |
Deprecated.
Sets the designated parameter to a Reader object.
|
void |
setNCharacterStream(java.lang.String parameterName,
java.io.Reader value,
long length) |
Deprecated.
Sets the designated parameter to a Reader object.
|
void |
setNClob(int parameterIndex,
java.io.Reader reader) |
Deprecated.
Sets the designated parameter to a Reader object.
|
void |
setNClob(int parameterIndex,
java.io.Reader reader,
long length) |
Deprecated.
Sets the designated parameter to a Reader object.
|
void |
setNClob(int parameterIndex,
java.sql.NClob value) |
Deprecated.
Sets the designated parameter to a java.sql.NClob object.
|
void |
setNClob(java.lang.String parameterName,
java.io.Reader reader) |
Deprecated.
Sets the designated parameter to a Reader object.
|
void |
setNClob(java.lang.String parameterName,
java.io.Reader reader,
long length) |
Deprecated.
Sets the designated parameter to a Reader object.
|
void |
setNClob(java.lang.String parameterName,
java.sql.NClob value) |
Deprecated.
Sets the designated parameter to a java.sql.NClob object.
|
void |
setNString(int parameterIndex,
java.lang.String value) |
Deprecated.
Sets the designated paramter to the given String object.
|
void |
setNString(java.lang.String parameterName,
java.lang.String value) |
Deprecated.
Sets the designated paramter to the given String object.
|
void |
setNull(int parameterIndex,
int sqlType) |
Deprecated.
Sets the designated parameter in this RowSet object's SQL command to
SQL NULL.
|
void |
setNull(int parameterIndex,
int sqlType,
java.lang.String typeName) |
Deprecated.
Sets the designated parameter in this RowSet object's SQL command to
SQL NULL.
|
void |
setNull(java.lang.String parameterName,
int sqlType) |
Deprecated.
Sets the designated parameter to SQL NULL.
|
void |
setNull(java.lang.String parameterName,
int sqlType,
java.lang.String typeName) |
Deprecated.
Sets the designated parameter to SQL NULL.
|
void |
setObject(int parameterIndex,
java.lang.Object x) |
Deprecated.
Sets the designated parameter in this RowSet object's command with a
Java Object.
|
void |
setObject(int parameterIndex,
java.lang.Object x,
int targetSqlType) |
Deprecated.
Sets the designated parameter in this RowSet object's command with a
Java Object.
|
void |
setObject(int parameterIndex,
java.lang.Object x,
int targetSqlType,
int scaleOrLength) |
Deprecated.
Sets the designated parameter in this RowSet object's command with the
given Java Object.
|
void |
setObject(java.lang.String parameterName,
java.lang.Object x) |
Deprecated.
Sets the value of the designated parameter with the given object.
|
void |
setObject(java.lang.String parameterName,
java.lang.Object x,
int targetSqlType) |
Deprecated.
Sets the value of the designated parameter with the given object.
|
void |
setObject(java.lang.String parameterName,
java.lang.Object x,
int targetSqlType,
int scaleOrLength) |
Deprecated.
Sets the value of the designated parameter with the given object.
|
void |
setPassword(java.lang.String p) |
Deprecated.
Sets the database password for this RowSet object to the given String.
|
void |
setQueryTimeout(int t) |
Deprecated.
Sets the maximum time the driver will wait for a statement to execute to
the given number of seconds
|
void |
setReadOnly(boolean b) |
Deprecated.
Sets whether this RowSet object is read-only to the given boolean.
|
void |
setRef(int i,
java.sql.Ref x) |
Deprecated.
Sets the designated parameter in this RowSet object's command with the
given Ref value.
|
void |
setRowId(int parameterIndex,
java.sql.RowId x) |
Deprecated.
Sets the designated parameter to the given java.sql.RowId object.
|
void |
setRowId(java.lang.String parameterName,
java.sql.RowId x) |
Deprecated.
Sets the designated parameter to the given java.sql.RowId object.
|
void |
setShort(int parameterIndex,
short x) |
Deprecated.
Sets the designated parameter in this RowSet object's command to the
given Java short value.
|
void |
setShort(java.lang.String parameterName,
short x) |
Deprecated.
Sets the designated parameter to the given Java short value.
|
void |
setShowDeleted(boolean b) |
Deprecated.
See javax.sql.rowset.JdbcRowSet
|
void |
setSQLXML(int parameterIndex,
java.sql.SQLXML xmlObject) |
Deprecated.
Sets the designated parameter to the given java.sql.SQLXML object.
|
void |
setSQLXML(java.lang.String parameterName,
java.sql.SQLXML xmlObject) |
Deprecated.
Sets the designated parameter to the given java.sql.SQLXML object.
|
void |
setString(int parameterIndex,
java.lang.String x) |
Deprecated.
Sets the designated parameter in this RowSet object's command to the
given Java String value.
|
void |
setString(java.lang.String parameterName,
java.lang.String x) |
Deprecated.
Sets the designated parameter to the given Java String value.
|
void |
setTime(int parameterIndex,
java.sql.Time x) |
Deprecated.
Sets the designated parameter in this RowSet object's command to the
given java.sql.Time value.
|
void |
setTime(int parameterIndex,
java.sql.Time x,
java.util.Calendar cal) |
Deprecated.
Sets the designated parameter in this RowSet object's command with the
given java.sql.Time value.
|
void |
setTime(java.lang.String parameterName,
java.sql.Time x) |
Deprecated.
Sets the designated parameter to the given java.sql.Time value.
|
void |
setTime(java.lang.String parameterName,
java.sql.Time x,
java.util.Calendar cal) |
Deprecated.
Sets the designated parameter in this RowSet object's command with the
given java.sql.Time value.
|
void |
setTimestamp(int parameterIndex,
java.sql.Timestamp x) |
Deprecated.
Sets the designated parameter in this RowSet object's command to the
given java.sql.Timestamp value.
|
void |
setTimestamp(int parameterIndex,
java.sql.Timestamp x,
java.util.Calendar cal) |
Deprecated.
Sets the designated parameter in this RowSet object's command with the
given java.sql.Timestamp value.
|
void |
setTimestamp(java.lang.String parameterName,
java.sql.Timestamp x) |
Deprecated.
Sets the designated parameter to the given java.sql.Timestamp value.
|
void |
setTimestamp(java.lang.String parameterName,
java.sql.Timestamp x,
java.util.Calendar cal) |
Deprecated.
Sets the designated parameter to the given java.sql.Timestamp value,
using the given Calendar object.
|
void |
setTransactionIsolation(int i) |
Deprecated.
Sets the transaction isolation level for this RowSet obejct.
|
void |
setType(int t) |
Deprecated.
Sets the type of this RowSet object to the given type.
|
void |
setTypeMap(java.util.Map<java.lang.String,java.lang.Class<?>> map) |
Deprecated.
Installs the given java.util.Map object as the default type map for
this RowSet object
|
void |
setUrl(java.lang.String u) |
Deprecated.
Sets the URL this RowSet object will use when it uses the
DriverManager to create a connection.
|
void |
setURL(int parameterIndex,
java.net.URL x) |
Deprecated.
Sets the designated parameter to the given java.net.URL value.
|
void |
setUsername(java.lang.String un) |
Deprecated.
Sets the username property for this RowSet object to the given String
|
void |
unsetMatchColumn(int columnIdx) |
Deprecated.
Unsets the designated parameter to the given int object
|
void |
unsetMatchColumn(int[] columnIdxes) |
Deprecated.
Unsets the designated parameter to the given int array
|
void |
unsetMatchColumn(java.lang.String columnName) |
Deprecated.
Unsets the designated parameter to the given string object
|
void |
unsetMatchColumn(java.lang.String[] columnNames) |
Deprecated.
Unsets the designated parameter to the given String array.
|
<T> T |
unwrap(java.lang.Class<T> iface) |
Deprecated.
Returns an object that implements the given interface to allow access
to non-standard methods, or standard methods not exposed by the proxy.
|
void |
updateArray(int columnIndex,
java.sql.Array x) |
Deprecated.
Updates the designated column with a java.sql.Array value.
|
void |
updateArray(java.lang.String columnLabel,
java.sql.Array x) |
Deprecated.
Updates the designated column with a java.sql.Array value.
|
void |
updateAsciiStream(int columnIndex,
java.io.InputStream x) |
Deprecated.
Updates the designated column with an ascii stream value.
|
void |
updateAsciiStream(int columnIndex,
java.io.InputStream x,
int length) |
Deprecated.
Updates the designated column with an ascii stream value, which will have
the specified number of bytes.
|
void |
updateAsciiStream(int columnIndex,
java.io.InputStream x,
long length) |
Deprecated.
Updates the designated column with an ascii stream value, which will have
the specified number of bytes.
|
void |
updateAsciiStream(java.lang.String columnLabel,
java.io.InputStream x) |
Deprecated.
Updates the designated column with an ascii stream value.
|
void |
updateAsciiStream(java.lang.String columnLabel,
java.io.InputStream x,
int length) |
Deprecated.
Updates the designated column with an ascii stream value, which will have
the specified number of bytes.
|
void |
updateAsciiStream(java.lang.String columnLabel,
java.io.InputStream x,
long length) |
Deprecated.
Updates the designated column with an ascii stream value, which will have
the specified number of bytes.
|
void |
updateBigDecimal(int columnIndex,
java.math.BigDecimal x) |
Deprecated.
Updates the designated column with a java.math.BigDecimal value.
|
void |
updateBigDecimal(java.lang.String columnLabel,
java.math.BigDecimal x) |
Deprecated.
Updates the designated column with a java.math.BigDecimal value.
|
void |
updateBinaryStream(int columnIndex,
java.io.InputStream x) |
Deprecated.
Updates the designated column with a binary stream value.
|
void |
updateBinaryStream(int columnIndex,
java.io.InputStream x,
int length) |
Deprecated.
Updates the designated column with a binary stream value, which will have
the specified number of bytes.
|
void |
updateBinaryStream(int columnIndex,
java.io.InputStream x,
long length) |
Deprecated.
Updates the designated column with a binary stream value, which will have
the specified number of bytes.
|
void |
updateBinaryStream(java.lang.String columnLabel,
java.io.InputStream x) |
Deprecated.
Updates the designated column with a binary stream value.
|
void |
updateBinaryStream(java.lang.String columnLabel,
java.io.InputStream x,
int length) |
Deprecated.
Updates the designated column with a binary stream value, which will have
the specified number of bytes.
|
void |
updateBinaryStream(java.lang.String columnLabel,
java.io.InputStream x,
long length) |
Deprecated.
Updates the designated column with a binary stream value, which will have
the specified number of bytes.
|
void |
updateBlob(int columnIndex,
java.io.InputStream inputStream) |
Deprecated.
Updates the designated column using the given input stream.
|
void |
updateBlob(int columnIndex,
java.io.InputStream inputStream,
long length) |
Deprecated.
Updates the designated column using the given input stream, which will
have the specified number of bytes.
|
void |
updateBlob(int columnIndex,
java.sql.Blob x) |
Deprecated.
Updates the designated column with a java.sql.Blob value.
|
void |
updateBlob(java.lang.String columnLabel,
java.io.InputStream inputStream) |
Deprecated.
Updates the designated column using the given input stream.
|
void |
updateBlob(java.lang.String columnLabel,
java.io.InputStream inputStream,
long length) |
Deprecated.
Updates the designated column using the given input stream, which will
have the specified number of bytes.
|
void |
updateBlob(java.lang.String columnLabel,
java.sql.Blob x) |
Deprecated.
Updates the designated column with a java.sql.Blob value
|
void |
updateBoolean(int columnIndex,
boolean x) |
Deprecated.
Updates the designated column with a boolean value.
|
void |
updateBoolean(java.lang.String columnLabel,
boolean x) |
Deprecated.
Updates the designated column with a boolean value.
|
void |
updateByte(int columnIndex,
byte x) |
Deprecated.
Updates the designated column with a byte value.
|
void |
updateByte(java.lang.String columnLabel,
byte x) |
Deprecated.
Updates the designated column with a byte value.
|
void |
updateBytes(int columnIndex,
byte[] x) |
Deprecated.
Updates the designated column with a byte array value.
|
void |
updateBytes(java.lang.String columnLabel,
byte[] x) |
Deprecated.
Updates the designated column with a byte array value.
|
void |
updateCharacterStream(int columnIndex,
java.io.Reader x) |
Deprecated.
Updates the designated column with a character stream value.
|
void |
updateCharacterStream(int columnIndex,
java.io.Reader x,
int length) |
Deprecated.
Updates the designated column with a character stream value, which will
have the specified number of bytes.
|
void |
updateCharacterStream(int columnIndex,
java.io.Reader x,
long length) |
Deprecated.
Updates the designated column with a character stream value, which will
have the specified number of bytes.
|
void |
updateCharacterStream(java.lang.String columnLabel,
java.io.Reader x) |
Deprecated.
Updates the designated column with a character stream value.
|
void |
updateCharacterStream(java.lang.String columnLabel,
java.io.Reader x,
int length) |
Deprecated.
Updates the designated column with a character stream value, which will
have the specified number of bytes.
|
void |
updateCharacterStream(java.lang.String columnLabel,
java.io.Reader x,
long length) |
Deprecated.
Updates the designated column with a character stream value, which will
have the specified number of bytes.
|
void |
updateClob(int columnIndex,
java.io.Reader reader) |
Deprecated.
Updates the designated column using the given Reader object.
|
void |
updateClob(int columnIndex,
java.io.Reader reader,
long length) |
Deprecated.
Updates the designated column using the given Reader object, which is the
given number of characters long.
|
void |
updateClob(int columnIndex,
java.sql.Clob x) |
Deprecated.
Updates the designated column with a java.sql.Clob value.
|
void |
updateClob(java.lang.String columnLabel,
java.io.Reader reader) |
Deprecated.
Updates the designated column using the given Reader object.
|
void |
updateClob(java.lang.String columnLabel,
java.io.Reader reader,
long length) |
Deprecated.
Updates the designated column using the given Reader object, which is the
given number of characters long.
|
void |
updateClob(java.lang.String columnLabel,
java.sql.Clob x) |
Deprecated.
Updates the designated column with a java.sql.Clob value.
|
void |
updateDate(int columnIndex,
java.sql.Date x) |
Deprecated.
Updates the designated column with a java.sql.Date value.
|
void |
updateDate(java.lang.String columnLabel,
java.sql.Date x) |
Deprecated.
Updates the designated column with a java.sql.Date value.
|
void |
updateDouble(int columnIndex,
double x) |
Deprecated.
Updates the designated column with a double value
|
void |
updateDouble(java.lang.String columnLabel,
double x) |
Deprecated.
Updates the designated column with a double value
|
void |
updateFloat(int columnIndex,
float x) |
Deprecated.
Updates the designated column with a float value.
|
void |
updateFloat(java.lang.String columnLabel,
float x) |
Deprecated.
Updates the designated column with a float value.
|
void |
updateInt(int columnIndex,
int x) |
Deprecated.
Updates the designated column with an int value.
|
void |
updateInt(java.lang.String columnLabel,
int x) |
Deprecated.
Updates the designated column with an int value.
|
void |
updateLong(int columnIndex,
long x) |
Deprecated.
Updates the designated column with a long value.
|
void |
updateLong(java.lang.String columnLabel,
long x) |
Deprecated.
Updates the designated column with a long value.
|
void |
updateNCharacterStream(int columnIndex,
java.io.Reader x) |
Deprecated.
Updates the designated column with a character stream value.
|
void |
updateNCharacterStream(int columnIndex,
java.io.Reader x,
long length) |
Deprecated.
Updates the designated column with a character stream value, which will
have the specified number of bytes.
|
void |
updateNCharacterStream(java.lang.String columnLabel,
java.io.Reader reader) |
Deprecated.
Updates the designated column with a character stream value.
|
void |
updateNCharacterStream(java.lang.String columnLabel,
java.io.Reader reader,
long length) |
Deprecated.
Updates the designated column with a character stream value, which will
have the specified number of bytes.
|
void |
updateNClob(int columnIndex,
java.io.Reader reader) |
Deprecated.
Updates the designated column using the given Reader object.
|
void |
updateNClob(int columnIndex,
java.io.Reader reader,
long length) |
Deprecated.
Updates the designated column using the given Reader, which is the given
number of characters long.
|
void |
updateNClob(int columnIndex,
java.sql.NClob nClob) |
Deprecated.
Updates the designated column with a java.sql.NClob value.
|
void |
updateNClob(java.lang.String columnLabel,
java.io.Reader reader) |
Deprecated.
Updates the designated column using the given Reader object.
|
void |
updateNClob(java.lang.String columnLabel,
java.io.Reader reader,
long length) |
Deprecated.
Updates the designated column using the given Reader, which is the given
number of characters long.
|
void |
updateNClob(java.lang.String columnLabel,
java.sql.NClob nClob) |
Deprecated.
Updates the designated column with a java.sql.NClob value.
|
void |
updateNString(int columnIndex,
java.lang.String nString) |
Deprecated.
Updates the designated column with a String value.
|
void |
updateNString(java.lang.String columnLabel,
java.lang.String nString) |
Deprecated.
Updates the designated column with a String value.
|
void |
updateNull(int columnIndex) |
Deprecated.
Updates the designated column with a null value.
|
void |
updateNull(java.lang.String columnLabel) |
Deprecated.
Updates the designated column with a null value.
|
void |
updateObject(int columnIndex,
java.lang.Object x) |
Deprecated.
Updates the designated column with an Object value.
|
void |
updateObject(int columnIndex,
java.lang.Object x,
int scaleOrLength) |
Deprecated.
Updates the designated column with an Object value.
|
void |
updateObject(java.lang.String columnLabel,
java.lang.Object x) |
Deprecated.
Updates the designated column with an Object value.
|
void |
updateObject(java.lang.String columnLabel,
java.lang.Object x,
int scaleOrLength) |
Deprecated.
Updates the designated column with an Object value.
|
void |
updateRef(int columnIndex,
java.sql.Ref x) |
Deprecated.
Updates the designated column with a java.sql.Ref value.
|
void |
updateRef(java.lang.String columnLabel,
java.sql.Ref x) |
Deprecated.
Updates the designated column with a java.sql.Ref value.
|
void |
updateRowId(int columnIndex,
java.sql.RowId x) |
Deprecated.
Updates the designated column with a RowId value.
|
void |
updateRowId(java.lang.String columnLabel,
java.sql.RowId x) |
Deprecated.
Updates the designated column with a RowId value.
|
void |
updateShort(int columnIndex,
short x) |
Deprecated.
Updates the designated column with a short value.
|
void |
updateShort(java.lang.String columnLabel,
short x) |
Deprecated.
Updates the designated column with a short value.
|
void |
updateSQLXML(int columnIndex,
java.sql.SQLXML xmlObject) |
Deprecated.
Updates the designated column with a java.sql.SQLXML value.
|
void |
updateSQLXML(java.lang.String columnLabel,
java.sql.SQLXML xmlObject) |
Deprecated.
Updates the designated column with a java.sql.SQLXML value.
|
void |
updateString(int columnIndex,
java.lang.String x) |
Deprecated.
Updates the designated column with a String value.
|
void |
updateString(java.lang.String columnLabel,
java.lang.String x) |
Deprecated.
Updates the designated column with a String value.
|
void |
updateTime(int columnIndex,
java.sql.Time x) |
Deprecated.
Updates the designated column with a java.sql.Time value
|
void |
updateTime(java.lang.String columnLabel,
java.sql.Time x) |
Deprecated.
Updates the designated column with a java.sql.Time value
|
void |
updateTimestamp(int columnIndex,
java.sql.Timestamp x) |
Deprecated.
Updates the designated column with a java.sql.Timestamp value.
|
void |
updateTimestamp(java.lang.String columnLabel,
java.sql.Timestamp x) |
Deprecated.
Updates the designated column with a java.sql.Timestamp value.
|
boolean |
wasNull() |
Deprecated.
Reports whether the last column read had a value of SQL NULL.
|
public void addRowSetListener(javax.sql.RowSetListener rsl)
addRowSetListener
in interface javax.sql.RowSet
public void removeRowSetListener(javax.sql.RowSetListener rsl)
removeRowSetListener
in interface javax.sql.RowSet
public java.sql.ResultSetMetaData getMetaData() throws java.sql.SQLException
getMetaData
in interface java.sql.ResultSet
java.sql.SQLException
public boolean isReadOnly()
isReadOnly
in interface javax.sql.RowSet
public void setReadOnly(boolean b)
setReadOnly
in interface javax.sql.RowSet
public boolean getShowDeleted() throws java.sql.SQLException
getShowDeleted
in interface javax.sql.rowset.JdbcRowSet
java.sql.SQLException
public void setShowDeleted(boolean b) throws java.sql.SQLException
setShowDeleted
in interface javax.sql.rowset.JdbcRowSet
java.sql.SQLException
public java.sql.SQLWarning getWarnings() throws java.sql.SQLException
getWarnings
in interface java.sql.ResultSet
java.sql.SQLException
public void clearWarnings() throws java.sql.SQLException
clearWarnings
in interface java.sql.ResultSet
java.sql.SQLException
public javax.sql.rowset.RowSetWarning getRowSetWarnings()
getRowSetWarnings
in interface javax.sql.rowset.JdbcRowSet
public java.lang.String getCursorName() throws java.sql.SQLException
getCursorName
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Statement getStatement() throws java.sql.SQLException
getStatement
in interface java.sql.ResultSet
java.sql.SQLException
public java.lang.String getDataSourceName()
getDataSourceName
in interface javax.sql.RowSet
public void setDataSourceName(java.lang.String s)
setDataSourceName
in interface javax.sql.RowSet
public java.lang.String getUrl()
getUrl
in interface javax.sql.RowSet
public void setUrl(java.lang.String u)
setUrl
in interface javax.sql.RowSet
public java.lang.String getUsername()
getUsername
in interface javax.sql.RowSet
public void setUsername(java.lang.String un)
setUsername
in interface javax.sql.RowSet
public java.lang.String getPassword()
getPassword
in interface javax.sql.RowSet
public void setPassword(java.lang.String p)
setPassword
in interface javax.sql.RowSet
public int getTransactionIsolation()
getTransactionIsolation
in interface javax.sql.RowSet
public void setTransactionIsolation(int i) throws java.sql.SQLException
setTransactionIsolation
in interface javax.sql.RowSet
java.sql.SQLException
public java.lang.String getCommand()
getCommand
in interface javax.sql.RowSet
public void setCommand(java.lang.String s)
setCommand
in interface javax.sql.RowSet
public int getQueryTimeout()
getQueryTimeout
in interface javax.sql.RowSet
public void setQueryTimeout(int t)
setQueryTimeout
in interface javax.sql.RowSet
public int getMaxRows()
getMaxRows
in interface javax.sql.RowSet
public void setMaxRows(int n)
setMaxRows
in interface javax.sql.RowSet
public int getMaxFieldSize()
getMaxFieldSize
in interface javax.sql.RowSet
public void setMaxFieldSize(int x)
setMaxFieldSize
in interface javax.sql.RowSet
public boolean getEscapeProcessing()
getEscapeProcessing
in interface javax.sql.RowSet
public int getConcurrency()
getConcurrency
in interface java.sql.ResultSet
public void setConcurrency(int c)
setConcurrency
in interface javax.sql.RowSet
public int getType()
getType
in interface java.sql.ResultSet
public void setType(int t)
setType
in interface javax.sql.RowSet
public int getFetchDirection()
getFetchDirection
in interface java.sql.ResultSet
public void setFetchDirection(int i) throws java.sql.SQLException
setFetchDirection
in interface java.sql.ResultSet
java.sql.SQLException
public int getFetchSize()
getFetchSize
in interface java.sql.ResultSet
public void setFetchSize(int i)
setFetchSize
in interface java.sql.ResultSet
public java.util.Map<java.lang.String,java.lang.Class<?>> getTypeMap()
getTypeMap
in interface javax.sql.RowSet
public void setTypeMap(java.util.Map<java.lang.String,java.lang.Class<?>> map)
setTypeMap
in interface javax.sql.RowSet
public void clearParameters()
clearParameters
in interface javax.sql.RowSet
public int getRow() throws java.sql.SQLException
getRow
in interface java.sql.ResultSet
java.sql.SQLException
public void moveToInsertRow() throws java.sql.SQLException
moveToInsertRow
in interface java.sql.ResultSet
java.sql.SQLException
public void moveToCurrentRow() throws java.sql.SQLException
moveToCurrentRow
in interface java.sql.ResultSet
java.sql.SQLException
public boolean absolute(int i) throws java.sql.SQLException
absolute
in interface java.sql.ResultSet
java.sql.SQLException
public void beforeFirst() throws java.sql.SQLException
beforeFirst
in interface java.sql.ResultSet
java.sql.SQLException
public boolean first() throws java.sql.SQLException
first
in interface java.sql.ResultSet
java.sql.SQLException
public boolean last() throws java.sql.SQLException
last
in interface java.sql.ResultSet
java.sql.SQLException
public void afterLast() throws java.sql.SQLException
afterLast
in interface java.sql.ResultSet
java.sql.SQLException
public boolean relative(int i) throws java.sql.SQLException
relative
in interface java.sql.ResultSet
java.sql.SQLException
public boolean next() throws java.sql.SQLException
next
in interface java.sql.ResultSet
java.sql.SQLException
public boolean previous() throws java.sql.SQLException
previous
in interface java.sql.ResultSet
java.sql.SQLException
public boolean isBeforeFirst() throws java.sql.SQLException
isBeforeFirst
in interface java.sql.ResultSet
java.sql.SQLException
public boolean isAfterLast() throws java.sql.SQLException
isAfterLast
in interface java.sql.ResultSet
java.sql.SQLException
public boolean isFirst() throws java.sql.SQLException
isFirst
in interface java.sql.ResultSet
java.sql.SQLException
public boolean isLast() throws java.sql.SQLException
isLast
in interface java.sql.ResultSet
java.sql.SQLException
public boolean rowUpdated() throws java.sql.SQLException
rowUpdated
in interface java.sql.ResultSet
java.sql.SQLException
public boolean rowInserted() throws java.sql.SQLException
rowInserted
in interface java.sql.ResultSet
java.sql.SQLException
public boolean rowDeleted() throws java.sql.SQLException
rowDeleted
in interface java.sql.ResultSet
java.sql.SQLException
public void setArray(int i, java.sql.Array x) throws java.sql.SQLException
setArray
in interface javax.sql.RowSet
java.sql.SQLException
public void setAsciiStream(int parameterIndex, java.io.InputStream x) throws java.sql.SQLException
setAsciiStream
in interface javax.sql.RowSet
java.sql.SQLException
public void setAsciiStream(int parameterIndex, java.io.InputStream x, int length) throws java.sql.SQLException
setAsciiStream
in interface javax.sql.RowSet
java.sql.SQLException
public void setAsciiStream(java.lang.String parameterName, java.io.InputStream x) throws java.sql.SQLException
setAsciiStream
in interface javax.sql.RowSet
java.sql.SQLException
public void setAsciiStream(java.lang.String parameterName, java.io.InputStream x, int length) throws java.sql.SQLException
setAsciiStream
in interface javax.sql.RowSet
java.sql.SQLException
public void setBigDecimal(int parameterIndex, java.math.BigDecimal x) throws java.sql.SQLException
setBigDecimal
in interface javax.sql.RowSet
java.sql.SQLException
public void setBigDecimal(java.lang.String parameterName, java.math.BigDecimal x) throws java.sql.SQLException
setBigDecimal
in interface javax.sql.RowSet
java.sql.SQLException
public void setBinaryStream(int parameterIndex, java.io.InputStream x) throws java.sql.SQLException
setBinaryStream
in interface javax.sql.RowSet
java.sql.SQLException
public void setBinaryStream(int parameterIndex, java.io.InputStream x, int length) throws java.sql.SQLException
setBinaryStream
in interface javax.sql.RowSet
java.sql.SQLException
public void setBinaryStream(java.lang.String parameterName, java.io.InputStream x) throws java.sql.SQLException
setBinaryStream
in interface javax.sql.RowSet
java.sql.SQLException
public void setBinaryStream(java.lang.String parameterName, java.io.InputStream x, int length) throws java.sql.SQLException
setBinaryStream
in interface javax.sql.RowSet
java.sql.SQLException
public void setBlob(int i, java.sql.Blob x) throws java.sql.SQLException
setBlob
in interface javax.sql.RowSet
java.sql.SQLException
public void setBlob(int parameterIndex, java.io.InputStream inputStream) throws java.sql.SQLException
setBlob
in interface javax.sql.RowSet
java.sql.SQLException
public void setBlob(int parameterIndex, java.io.InputStream inputStream, long length) throws java.sql.SQLException
setBlob
in interface javax.sql.RowSet
java.sql.SQLException
public void setBlob(java.lang.String parameterName, java.sql.Blob x) throws java.sql.SQLException
setBlob
in interface javax.sql.RowSet
java.sql.SQLException
public void setBlob(java.lang.String parameterName, java.io.InputStream inputStream) throws java.sql.SQLException
setBlob
in interface javax.sql.RowSet
java.sql.SQLException
public void setBlob(java.lang.String parameterName, java.io.InputStream inputStream, long length) throws java.sql.SQLException
setBlob
in interface javax.sql.RowSet
java.sql.SQLException
public void setBoolean(int parameterIndex, boolean x) throws java.sql.SQLException
setBoolean
in interface javax.sql.RowSet
java.sql.SQLException
public void setBoolean(java.lang.String parameterName, boolean x) throws java.sql.SQLException
setBoolean
in interface javax.sql.RowSet
java.sql.SQLException
public void setByte(int parameterIndex, byte x) throws java.sql.SQLException
setByte
in interface javax.sql.RowSet
java.sql.SQLException
public void setByte(java.lang.String parameterName, byte x) throws java.sql.SQLException
setByte
in interface javax.sql.RowSet
java.sql.SQLException
public void setBytes(int parameterIndex, byte[] x) throws java.sql.SQLException
setBytes
in interface javax.sql.RowSet
java.sql.SQLException
public void setBytes(java.lang.String parameterName, byte[] x) throws java.sql.SQLException
setBytes
in interface javax.sql.RowSet
java.sql.SQLException
public void setCharacterStream(int parameterIndex, java.io.Reader reader) throws java.sql.SQLException
setCharacterStream
in interface javax.sql.RowSet
java.sql.SQLException
public void setCharacterStream(int parameterIndex, java.io.Reader reader, int length) throws java.sql.SQLException
setCharacterStream
in interface javax.sql.RowSet
java.sql.SQLException
public void setCharacterStream(java.lang.String parameterName, java.io.Reader reader) throws java.sql.SQLException
setCharacterStream
in interface javax.sql.RowSet
java.sql.SQLException
public void setCharacterStream(java.lang.String parameterName, java.io.Reader reader, int length) throws java.sql.SQLException
setCharacterStream
in interface javax.sql.RowSet
java.sql.SQLException
public void setClob(int i, java.sql.Clob x) throws java.sql.SQLException
setClob
in interface javax.sql.RowSet
java.sql.SQLException
public void setClob(int parameterIndex, java.io.Reader reader) throws java.sql.SQLException
setClob
in interface javax.sql.RowSet
java.sql.SQLException
public void setClob(int parameterIndex, java.io.Reader reader, long length) throws java.sql.SQLException
setClob
in interface javax.sql.RowSet
java.sql.SQLException
public void setClob(java.lang.String parameterName, java.sql.Clob x) throws java.sql.SQLException
setClob
in interface javax.sql.RowSet
java.sql.SQLException
public void setClob(java.lang.String parameterName, java.io.Reader reader) throws java.sql.SQLException
setClob
in interface javax.sql.RowSet
java.sql.SQLException
public void setClob(java.lang.String parameterName, java.io.Reader reader, long length) throws java.sql.SQLException
setClob
in interface javax.sql.RowSet
java.sql.SQLException
public void setDate(int parameterIndex, java.sql.Date x) throws java.sql.SQLException
setDate
in interface javax.sql.RowSet
java.sql.SQLException
public void setDate(int parameterIndex, java.sql.Date x, java.util.Calendar cal) throws java.sql.SQLException
setDate
in interface javax.sql.RowSet
java.sql.SQLException
public void setDate(java.lang.String parameterName, java.sql.Date x) throws java.sql.SQLException
setDate
in interface javax.sql.RowSet
java.sql.SQLException
public void setDate(java.lang.String parameterName, java.sql.Date x, java.util.Calendar cal) throws java.sql.SQLException
setDate
in interface javax.sql.RowSet
java.sql.SQLException
public void setDouble(int parameterIndex, double x) throws java.sql.SQLException
setDouble
in interface javax.sql.RowSet
java.sql.SQLException
public void setDouble(java.lang.String parameterName, double x) throws java.sql.SQLException
setDouble
in interface javax.sql.RowSet
java.sql.SQLException
public void setFloat(int parameterIndex, float x) throws java.sql.SQLException
setFloat
in interface javax.sql.RowSet
java.sql.SQLException
public void setFloat(java.lang.String parameterName, float x) throws java.sql.SQLException
setFloat
in interface javax.sql.RowSet
java.sql.SQLException
public void setInt(int parameterIndex, int x) throws java.sql.SQLException
setInt
in interface javax.sql.RowSet
java.sql.SQLException
public void setInt(java.lang.String parameterName, int x) throws java.sql.SQLException
setInt
in interface javax.sql.RowSet
java.sql.SQLException
public void setLong(int parameterIndex, long x) throws java.sql.SQLException
setLong
in interface javax.sql.RowSet
java.sql.SQLException
public void setLong(java.lang.String parameterName, long x) throws java.sql.SQLException
setLong
in interface javax.sql.RowSet
java.sql.SQLException
public void setNCharacterStream(int parameterIndex, java.io.Reader value) throws java.sql.SQLException
setNCharacterStream
in interface javax.sql.RowSet
java.sql.SQLException
public void setNCharacterStream(int parameterIndex, java.io.Reader value, long length) throws java.sql.SQLException
setNCharacterStream
in interface javax.sql.RowSet
java.sql.SQLException
public void setNCharacterStream(java.lang.String parameterName, java.io.Reader value) throws java.sql.SQLException
setNCharacterStream
in interface javax.sql.RowSet
java.sql.SQLException
public void setNCharacterStream(java.lang.String parameterName, java.io.Reader value, long length) throws java.sql.SQLException
setNCharacterStream
in interface javax.sql.RowSet
java.sql.SQLException
public void setNClob(int parameterIndex, java.sql.NClob value) throws java.sql.SQLException
setNClob
in interface javax.sql.RowSet
java.sql.SQLException
public void setNClob(int parameterIndex, java.io.Reader reader) throws java.sql.SQLException
setNClob
in interface javax.sql.RowSet
java.sql.SQLException
public void setNClob(int parameterIndex, java.io.Reader reader, long length) throws java.sql.SQLException
setNClob
in interface javax.sql.RowSet
java.sql.SQLException
public void setNClob(java.lang.String parameterName, java.sql.NClob value) throws java.sql.SQLException
setNClob
in interface javax.sql.RowSet
java.sql.SQLException
public void setNClob(java.lang.String parameterName, java.io.Reader reader) throws java.sql.SQLException
setNClob
in interface javax.sql.RowSet
java.sql.SQLException
public void setNClob(java.lang.String parameterName, java.io.Reader reader, long length) throws java.sql.SQLException
setNClob
in interface javax.sql.RowSet
java.sql.SQLException
public void setNString(int parameterIndex, java.lang.String value) throws java.sql.SQLException
setNString
in interface javax.sql.RowSet
java.sql.SQLException
public void setNString(java.lang.String parameterName, java.lang.String value) throws java.sql.SQLException
setNString
in interface javax.sql.RowSet
java.sql.SQLException
public void setNull(int parameterIndex, int sqlType) throws java.sql.SQLException
setNull
in interface javax.sql.RowSet
java.sql.SQLException
public void setNull(int parameterIndex, int sqlType, java.lang.String typeName) throws java.sql.SQLException
setNull
in interface javax.sql.RowSet
java.sql.SQLException
public void setNull(java.lang.String parameterName, int sqlType) throws java.sql.SQLException
setNull
in interface javax.sql.RowSet
java.sql.SQLException
public void setNull(java.lang.String parameterName, int sqlType, java.lang.String typeName) throws java.sql.SQLException
setNull
in interface javax.sql.RowSet
java.sql.SQLException
public void setObject(int parameterIndex, java.lang.Object x) throws java.sql.SQLException
setObject
in interface javax.sql.RowSet
java.sql.SQLException
public void setObject(int parameterIndex, java.lang.Object x, int targetSqlType) throws java.sql.SQLException
setObject
in interface javax.sql.RowSet
java.sql.SQLException
public void setObject(int parameterIndex, java.lang.Object x, int targetSqlType, int scaleOrLength) throws java.sql.SQLException
setObject
in interface javax.sql.RowSet
java.sql.SQLException
public void setObject(java.lang.String parameterName, java.lang.Object x) throws java.sql.SQLException
setObject
in interface javax.sql.RowSet
java.sql.SQLException
public void setObject(java.lang.String parameterName, java.lang.Object x, int targetSqlType) throws java.sql.SQLException
setObject
in interface javax.sql.RowSet
java.sql.SQLException
public void setObject(java.lang.String parameterName, java.lang.Object x, int targetSqlType, int scaleOrLength) throws java.sql.SQLException
setObject
in interface javax.sql.RowSet
java.sql.SQLException
public void setRef(int i, java.sql.Ref x) throws java.sql.SQLException
setRef
in interface javax.sql.RowSet
java.sql.SQLException
public void setRowId(int parameterIndex, java.sql.RowId x) throws java.sql.SQLException
setRowId
in interface javax.sql.RowSet
java.sql.SQLException
public void setRowId(java.lang.String parameterName, java.sql.RowId x) throws java.sql.SQLException
setRowId
in interface javax.sql.RowSet
java.sql.SQLException
public void setShort(int parameterIndex, short x) throws java.sql.SQLException
setShort
in interface javax.sql.RowSet
java.sql.SQLException
public void setShort(java.lang.String parameterName, short x) throws java.sql.SQLException
setShort
in interface javax.sql.RowSet
java.sql.SQLException
public void setSQLXML(int parameterIndex, java.sql.SQLXML xmlObject) throws java.sql.SQLException
setSQLXML
in interface javax.sql.RowSet
java.sql.SQLException
public void setSQLXML(java.lang.String parameterName, java.sql.SQLXML xmlObject) throws java.sql.SQLException
setSQLXML
in interface javax.sql.RowSet
java.sql.SQLException
public void setString(int parameterIndex, java.lang.String x) throws java.sql.SQLException
setString
in interface javax.sql.RowSet
java.sql.SQLException
public void setString(java.lang.String parameterName, java.lang.String x) throws java.sql.SQLException
setString
in interface javax.sql.RowSet
java.sql.SQLException
public void setTime(int parameterIndex, java.sql.Time x) throws java.sql.SQLException
setTime
in interface javax.sql.RowSet
java.sql.SQLException
public void setTime(int parameterIndex, java.sql.Time x, java.util.Calendar cal) throws java.sql.SQLException
setTime
in interface javax.sql.RowSet
java.sql.SQLException
public void setTime(java.lang.String parameterName, java.sql.Time x) throws java.sql.SQLException
setTime
in interface javax.sql.RowSet
java.sql.SQLException
public void setTime(java.lang.String parameterName, java.sql.Time x, java.util.Calendar cal) throws java.sql.SQLException
setTime
in interface javax.sql.RowSet
java.sql.SQLException
public void setTimestamp(int parameterIndex, java.sql.Timestamp x) throws java.sql.SQLException
setTimestamp
in interface javax.sql.RowSet
java.sql.SQLException
public void setTimestamp(int parameterIndex, java.sql.Timestamp x, java.util.Calendar cal) throws java.sql.SQLException
setTimestamp
in interface javax.sql.RowSet
java.sql.SQLException
public void setTimestamp(java.lang.String parameterName, java.sql.Timestamp x) throws java.sql.SQLException
setTimestamp
in interface javax.sql.RowSet
java.sql.SQLException
public void setTimestamp(java.lang.String parameterName, java.sql.Timestamp x, java.util.Calendar cal) throws java.sql.SQLException
setTimestamp
in interface javax.sql.RowSet
java.sql.SQLException
public void setURL(int parameterIndex, java.net.URL x) throws java.sql.SQLException
setURL
in interface javax.sql.RowSet
java.sql.SQLException
public java.sql.Array getArray(int columnIndex) throws java.sql.SQLException
getArray
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Array getArray(java.lang.String columnLabel) throws java.sql.SQLException
getArray
in interface java.sql.ResultSet
java.sql.SQLException
public java.io.InputStream getAsciiStream(int columnIndex) throws java.sql.SQLException
getAsciiStream
in interface java.sql.ResultSet
java.sql.SQLException
public java.io.InputStream getAsciiStream(java.lang.String columnLabel) throws java.sql.SQLException
getAsciiStream
in interface java.sql.ResultSet
java.sql.SQLException
public java.math.BigDecimal getBigDecimal(int columnIndex) throws java.sql.SQLException
getBigDecimal
in interface java.sql.ResultSet
java.sql.SQLException
public java.math.BigDecimal getBigDecimal(int columnIndex, int scale) throws java.sql.SQLException
getBigDecimal
in interface java.sql.ResultSet
java.sql.SQLException
public java.math.BigDecimal getBigDecimal(java.lang.String columnLabel) throws java.sql.SQLException
getBigDecimal
in interface java.sql.ResultSet
java.sql.SQLException
public java.math.BigDecimal getBigDecimal(java.lang.String columnLabel, int scale) throws java.sql.SQLException
getBigDecimal
in interface java.sql.ResultSet
java.sql.SQLException
public java.io.InputStream getBinaryStream(int columnIndex) throws java.sql.SQLException
getBinaryStream
in interface java.sql.ResultSet
java.sql.SQLException
public java.io.InputStream getBinaryStream(java.lang.String columnLabel) throws java.sql.SQLException
getBinaryStream
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Blob getBlob(int columnIndex) throws java.sql.SQLException
getBlob
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Blob getBlob(java.lang.String columnLabel) throws java.sql.SQLException
getBlob
in interface java.sql.ResultSet
java.sql.SQLException
public boolean getBoolean(int columnIndex) throws java.sql.SQLException
getBoolean
in interface java.sql.ResultSet
java.sql.SQLException
public boolean getBoolean(java.lang.String columnLabel) throws java.sql.SQLException
getBoolean
in interface java.sql.ResultSet
java.sql.SQLException
public byte getByte(int columnIndex) throws java.sql.SQLException
getByte
in interface java.sql.ResultSet
java.sql.SQLException
public byte getByte(java.lang.String columnLabel) throws java.sql.SQLException
getByte
in interface java.sql.ResultSet
java.sql.SQLException
public byte[] getBytes(int columnIndex) throws java.sql.SQLException
getBytes
in interface java.sql.ResultSet
java.sql.SQLException
public byte[] getBytes(java.lang.String columnLabel) throws java.sql.SQLException
getBytes
in interface java.sql.ResultSet
java.sql.SQLException
public java.io.Reader getCharacterStream(int columnIndex) throws java.sql.SQLException
getCharacterStream
in interface java.sql.ResultSet
java.sql.SQLException
public java.io.Reader getCharacterStream(java.lang.String columnLabel) throws java.sql.SQLException
getCharacterStream
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Clob getClob(int columnIndex) throws java.sql.SQLException
getClob
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Clob getClob(java.lang.String columnLabel) throws java.sql.SQLException
getClob
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Date getDate(int columnIndex) throws java.sql.SQLException
getDate
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Date getDate(int columnIndex, java.util.Calendar cal) throws java.sql.SQLException
getDate
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Date getDate(java.lang.String columnLabel) throws java.sql.SQLException
getDate
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Date getDate(java.lang.String columnLabel, java.util.Calendar cal) throws java.sql.SQLException
getDate
in interface java.sql.ResultSet
java.sql.SQLException
public double getDouble(int columnIndex) throws java.sql.SQLException
getDouble
in interface java.sql.ResultSet
java.sql.SQLException
public double getDouble(java.lang.String columnLabel) throws java.sql.SQLException
getDouble
in interface java.sql.ResultSet
java.sql.SQLException
public float getFloat(int columnIndex) throws java.sql.SQLException
getFloat
in interface java.sql.ResultSet
java.sql.SQLException
public float getFloat(java.lang.String columnLabel) throws java.sql.SQLException
getFloat
in interface java.sql.ResultSet
java.sql.SQLException
public int getInt(int columnIndex) throws java.sql.SQLException
getInt
in interface java.sql.ResultSet
java.sql.SQLException
public int getInt(java.lang.String columnLabel) throws java.sql.SQLException
getInt
in interface java.sql.ResultSet
java.sql.SQLException
public long getLong(int columnIndex) throws java.sql.SQLException
getLong
in interface java.sql.ResultSet
java.sql.SQLException
public long getLong(java.lang.String columnLabel) throws java.sql.SQLException
getLong
in interface java.sql.ResultSet
java.sql.SQLException
public java.io.Reader getNCharacterStream(int columnIndex) throws java.sql.SQLException
getNCharacterStream
in interface java.sql.ResultSet
java.sql.SQLException
public java.io.Reader getNCharacterStream(java.lang.String columnLabel) throws java.sql.SQLException
getNCharacterStream
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.NClob getNClob(int columnIndex) throws java.sql.SQLException
getNClob
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.NClob getNClob(java.lang.String columnLabel) throws java.sql.SQLException
getNClob
in interface java.sql.ResultSet
java.sql.SQLException
public java.lang.String getNString(int columnIndex) throws java.sql.SQLException
getNString
in interface java.sql.ResultSet
java.sql.SQLException
public java.lang.String getNString(java.lang.String columnLabel) throws java.sql.SQLException
getNString
in interface java.sql.ResultSet
java.sql.SQLException
public java.lang.Object getObject(int columnIndex) throws java.sql.SQLException
getObject
in interface java.sql.ResultSet
java.sql.SQLException
public java.lang.Object getObject(int columnIndex, java.util.Map<java.lang.String,java.lang.Class<?>> map) throws java.sql.SQLException
getObject
in interface java.sql.ResultSet
java.sql.SQLException
public java.lang.Object getObject(java.lang.String columnLabel) throws java.sql.SQLException
getObject
in interface java.sql.ResultSet
java.sql.SQLException
public java.lang.Object getObject(java.lang.String columnLabel, java.util.Map<java.lang.String,java.lang.Class<?>> map) throws java.sql.SQLException
getObject
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Ref getRef(int columnIndex) throws java.sql.SQLException
getRef
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Ref getRef(java.lang.String columnLabel) throws java.sql.SQLException
getRef
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.RowId getRowId(int columnIndex) throws java.sql.SQLException
getRowId
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.RowId getRowId(java.lang.String columnLabel) throws java.sql.SQLException
getRowId
in interface java.sql.ResultSet
java.sql.SQLException
public short getShort(int columnIndex) throws java.sql.SQLException
getShort
in interface java.sql.ResultSet
java.sql.SQLException
public short getShort(java.lang.String columnLabel) throws java.sql.SQLException
getShort
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.SQLXML getSQLXML(int columnIndex) throws java.sql.SQLException
getSQLXML
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.SQLXML getSQLXML(java.lang.String columnLabel) throws java.sql.SQLException
getSQLXML
in interface java.sql.ResultSet
java.sql.SQLException
public java.lang.String getString(int columnIndex) throws java.sql.SQLException
getString
in interface java.sql.ResultSet
java.sql.SQLException
public java.lang.String getString(java.lang.String columnLabel) throws java.sql.SQLException
getString
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Time getTime(int columnIndex) throws java.sql.SQLException
getTime
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Time getTime(int columnIndex, java.util.Calendar cal) throws java.sql.SQLException
getTime
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Time getTime(java.lang.String columnLabel) throws java.sql.SQLException
getTime
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Time getTime(java.lang.String columnLabel, java.util.Calendar cal) throws java.sql.SQLException
getTime
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Timestamp getTimestamp(int columnIndex) throws java.sql.SQLException
getTimestamp
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Timestamp getTimestamp(int columnIndex, java.util.Calendar cal) throws java.sql.SQLException
getTimestamp
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Timestamp getTimestamp(java.lang.String columnLabel) throws java.sql.SQLException
getTimestamp
in interface java.sql.ResultSet
java.sql.SQLException
public java.sql.Timestamp getTimestamp(java.lang.String columnLabel, java.util.Calendar cal) throws java.sql.SQLException
getTimestamp
in interface java.sql.ResultSet
java.sql.SQLException
public java.io.InputStream getUnicodeStream(int columnIndex) throws java.sql.SQLException
getUnicodeStream
in interface java.sql.ResultSet
java.sql.SQLException
public java.io.InputStream getUnicodeStream(java.lang.String columnLabel) throws java.sql.SQLException
getUnicodeStream
in interface java.sql.ResultSet
java.sql.SQLException
public java.net.URL getURL(int columnIndex) throws java.sql.SQLException
getURL
in interface java.sql.ResultSet
java.sql.SQLException
public java.net.URL getURL(java.lang.String columnLabel) throws java.sql.SQLException
getURL
in interface java.sql.ResultSet
java.sql.SQLException
public boolean wasNull() throws java.sql.SQLException
wasNull
in interface java.sql.ResultSet
java.sql.SQLException
public void updateArray(int columnIndex, java.sql.Array x) throws java.sql.SQLException
updateArray
in interface java.sql.ResultSet
java.sql.SQLException
public void updateArray(java.lang.String columnLabel, java.sql.Array x) throws java.sql.SQLException
updateArray
in interface java.sql.ResultSet
java.sql.SQLException
public void updateAsciiStream(int columnIndex, java.io.InputStream x) throws java.sql.SQLException
updateAsciiStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateAsciiStream(int columnIndex, java.io.InputStream x, int length) throws java.sql.SQLException
updateAsciiStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateAsciiStream(int columnIndex, java.io.InputStream x, long length) throws java.sql.SQLException
updateAsciiStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateAsciiStream(java.lang.String columnLabel, java.io.InputStream x) throws java.sql.SQLException
updateAsciiStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateAsciiStream(java.lang.String columnLabel, java.io.InputStream x, int length) throws java.sql.SQLException
updateAsciiStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateAsciiStream(java.lang.String columnLabel, java.io.InputStream x, long length) throws java.sql.SQLException
updateAsciiStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBigDecimal(int columnIndex, java.math.BigDecimal x) throws java.sql.SQLException
updateBigDecimal
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBigDecimal(java.lang.String columnLabel, java.math.BigDecimal x) throws java.sql.SQLException
updateBigDecimal
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBinaryStream(int columnIndex, java.io.InputStream x) throws java.sql.SQLException
updateBinaryStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBinaryStream(int columnIndex, java.io.InputStream x, int length) throws java.sql.SQLException
updateBinaryStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBinaryStream(int columnIndex, java.io.InputStream x, long length) throws java.sql.SQLException
updateBinaryStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBinaryStream(java.lang.String columnLabel, java.io.InputStream x) throws java.sql.SQLException
updateBinaryStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBinaryStream(java.lang.String columnLabel, java.io.InputStream x, int length) throws java.sql.SQLException
updateBinaryStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBinaryStream(java.lang.String columnLabel, java.io.InputStream x, long length) throws java.sql.SQLException
updateBinaryStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBlob(int columnIndex, java.sql.Blob x) throws java.sql.SQLException
updateBlob
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBlob(int columnIndex, java.io.InputStream inputStream) throws java.sql.SQLException
updateBlob
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBlob(int columnIndex, java.io.InputStream inputStream, long length) throws java.sql.SQLException
updateBlob
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBlob(java.lang.String columnLabel, java.sql.Blob x) throws java.sql.SQLException
updateBlob
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBlob(java.lang.String columnLabel, java.io.InputStream inputStream) throws java.sql.SQLException
updateBlob
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBlob(java.lang.String columnLabel, java.io.InputStream inputStream, long length) throws java.sql.SQLException
updateBlob
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBoolean(int columnIndex, boolean x) throws java.sql.SQLException
updateBoolean
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBoolean(java.lang.String columnLabel, boolean x) throws java.sql.SQLException
updateBoolean
in interface java.sql.ResultSet
java.sql.SQLException
public void updateByte(int columnIndex, byte x) throws java.sql.SQLException
updateByte
in interface java.sql.ResultSet
java.sql.SQLException
public void updateByte(java.lang.String columnLabel, byte x) throws java.sql.SQLException
updateByte
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBytes(int columnIndex, byte[] x) throws java.sql.SQLException
updateBytes
in interface java.sql.ResultSet
java.sql.SQLException
public void updateBytes(java.lang.String columnLabel, byte[] x) throws java.sql.SQLException
updateBytes
in interface java.sql.ResultSet
java.sql.SQLException
public void updateCharacterStream(int columnIndex, java.io.Reader x) throws java.sql.SQLException
updateCharacterStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateCharacterStream(int columnIndex, java.io.Reader x, int length) throws java.sql.SQLException
updateCharacterStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateCharacterStream(int columnIndex, java.io.Reader x, long length) throws java.sql.SQLException
updateCharacterStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateCharacterStream(java.lang.String columnLabel, java.io.Reader x) throws java.sql.SQLException
updateCharacterStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateCharacterStream(java.lang.String columnLabel, java.io.Reader x, int length) throws java.sql.SQLException
updateCharacterStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateCharacterStream(java.lang.String columnLabel, java.io.Reader x, long length) throws java.sql.SQLException
updateCharacterStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateClob(int columnIndex, java.sql.Clob x) throws java.sql.SQLException
updateClob
in interface java.sql.ResultSet
java.sql.SQLException
public void updateClob(int columnIndex, java.io.Reader reader) throws java.sql.SQLException
updateClob
in interface java.sql.ResultSet
java.sql.SQLException
public void updateClob(int columnIndex, java.io.Reader reader, long length) throws java.sql.SQLException
updateClob
in interface java.sql.ResultSet
java.sql.SQLException
public void updateClob(java.lang.String columnLabel, java.sql.Clob x) throws java.sql.SQLException
updateClob
in interface java.sql.ResultSet
java.sql.SQLException
public void updateClob(java.lang.String columnLabel, java.io.Reader reader) throws java.sql.SQLException
updateClob
in interface java.sql.ResultSet
java.sql.SQLException
public void updateClob(java.lang.String columnLabel, java.io.Reader reader, long length) throws java.sql.SQLException
updateClob
in interface java.sql.ResultSet
java.sql.SQLException
public void updateDate(int columnIndex, java.sql.Date x) throws java.sql.SQLException
updateDate
in interface java.sql.ResultSet
java.sql.SQLException
public void updateDate(java.lang.String columnLabel, java.sql.Date x) throws java.sql.SQLException
updateDate
in interface java.sql.ResultSet
java.sql.SQLException
public void updateDouble(int columnIndex, double x) throws java.sql.SQLException
updateDouble
in interface java.sql.ResultSet
java.sql.SQLException
public void updateDouble(java.lang.String columnLabel, double x) throws java.sql.SQLException
updateDouble
in interface java.sql.ResultSet
java.sql.SQLException
public void updateFloat(int columnIndex, float x) throws java.sql.SQLException
updateFloat
in interface java.sql.ResultSet
java.sql.SQLException
public void updateFloat(java.lang.String columnLabel, float x) throws java.sql.SQLException
updateFloat
in interface java.sql.ResultSet
java.sql.SQLException
public void updateInt(int columnIndex, int x) throws java.sql.SQLException
updateInt
in interface java.sql.ResultSet
java.sql.SQLException
public void updateInt(java.lang.String columnLabel, int x) throws java.sql.SQLException
updateInt
in interface java.sql.ResultSet
java.sql.SQLException
public void updateLong(int columnIndex, long x) throws java.sql.SQLException
updateLong
in interface java.sql.ResultSet
java.sql.SQLException
public void updateLong(java.lang.String columnLabel, long x) throws java.sql.SQLException
updateLong
in interface java.sql.ResultSet
java.sql.SQLException
public void updateNCharacterStream(int columnIndex, java.io.Reader x) throws java.sql.SQLException
updateNCharacterStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateNCharacterStream(int columnIndex, java.io.Reader x, long length) throws java.sql.SQLException
updateNCharacterStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateNCharacterStream(java.lang.String columnLabel, java.io.Reader reader) throws java.sql.SQLException
updateNCharacterStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateNCharacterStream(java.lang.String columnLabel, java.io.Reader reader, long length) throws java.sql.SQLException
updateNCharacterStream
in interface java.sql.ResultSet
java.sql.SQLException
public void updateNClob(int columnIndex, java.sql.NClob nClob) throws java.sql.SQLException
updateNClob
in interface java.sql.ResultSet
java.sql.SQLException
public void updateNClob(int columnIndex, java.io.Reader reader) throws java.sql.SQLException
updateNClob
in interface java.sql.ResultSet
java.sql.SQLException
public void updateNClob(int columnIndex, java.io.Reader reader, long length) throws java.sql.SQLException
updateNClob
in interface java.sql.ResultSet
java.sql.SQLException
public void updateNClob(java.lang.String columnLabel, java.sql.NClob nClob) throws java.sql.SQLException
updateNClob
in interface java.sql.ResultSet
java.sql.SQLException
public void updateNClob(java.lang.String columnLabel, java.io.Reader reader) throws java.sql.SQLException
updateNClob
in interface java.sql.ResultSet
java.sql.SQLException
public void updateNClob(java.lang.String columnLabel, java.io.Reader reader, long length) throws java.sql.SQLException
updateNClob
in interface java.sql.ResultSet
java.sql.SQLException
public void updateNString(int columnIndex, java.lang.String nString) throws java.sql.SQLException
updateNString
in interface java.sql.ResultSet
java.sql.SQLException
public void updateNString(java.lang.String columnLabel, java.lang.String nString) throws java.sql.SQLException
updateNString
in interface java.sql.ResultSet
java.sql.SQLException
public void updateNull(int columnIndex) throws java.sql.SQLException
updateNull
in interface java.sql.ResultSet
java.sql.SQLException
public void updateNull(java.lang.String columnLabel) throws java.sql.SQLException
updateNull
in interface java.sql.ResultSet
java.sql.SQLException
public void updateObject(int columnIndex, java.lang.Object x) throws java.sql.SQLException
updateObject
in interface java.sql.ResultSet
java.sql.SQLException
public void updateObject(int columnIndex, java.lang.Object x, int scaleOrLength) throws java.sql.SQLException
updateObject
in interface java.sql.ResultSet
java.sql.SQLException
public void updateObject(java.lang.String columnLabel, java.lang.Object x) throws java.sql.SQLException
updateObject
in interface java.sql.ResultSet
java.sql.SQLException
public void updateObject(java.lang.String columnLabel, java.lang.Object x, int scaleOrLength) throws java.sql.SQLException
updateObject
in interface java.sql.ResultSet
java.sql.SQLException
public void updateRef(int columnIndex, java.sql.Ref x) throws java.sql.SQLException
updateRef
in interface java.sql.ResultSet
java.sql.SQLException
public void updateRef(java.lang.String columnLabel, java.sql.Ref x) throws java.sql.SQLException
updateRef
in interface java.sql.ResultSet
java.sql.SQLException
public void updateRowId(int columnIndex, java.sql.RowId x) throws java.sql.SQLException
updateRowId
in interface java.sql.ResultSet
java.sql.SQLException
public void updateRowId(java.lang.String columnLabel, java.sql.RowId x) throws java.sql.SQLException
updateRowId
in interface java.sql.ResultSet
java.sql.SQLException
public void updateShort(int columnIndex, short x) throws java.sql.SQLException
updateShort
in interface java.sql.ResultSet
java.sql.SQLException
public void updateShort(java.lang.String columnLabel, short x) throws java.sql.SQLException
updateShort
in interface java.sql.ResultSet
java.sql.SQLException
public void updateSQLXML(int columnIndex, java.sql.SQLXML xmlObject) throws java.sql.SQLException
updateSQLXML
in interface java.sql.ResultSet
java.sql.SQLException
public void updateSQLXML(java.lang.String columnLabel, java.sql.SQLXML xmlObject) throws java.sql.SQLException
updateSQLXML
in interface java.sql.ResultSet
java.sql.SQLException
public void updateString(int columnIndex, java.lang.String x) throws java.sql.SQLException
updateString
in interface java.sql.ResultSet
java.sql.SQLException
public void updateString(java.lang.String columnLabel, java.lang.String x) throws java.sql.SQLException
updateString
in interface java.sql.ResultSet
java.sql.SQLException
public void updateTime(int columnIndex, java.sql.Time x) throws java.sql.SQLException
updateTime
in interface java.sql.ResultSet
java.sql.SQLException
public void updateTime(java.lang.String columnLabel, java.sql.Time x) throws java.sql.SQLException
updateTime
in interface java.sql.ResultSet
java.sql.SQLException
public void updateTimestamp(int columnIndex, java.sql.Timestamp x) throws java.sql.SQLException
updateTimestamp
in interface java.sql.ResultSet
java.sql.SQLException
public void updateTimestamp(java.lang.String columnLabel, java.sql.Timestamp x) throws java.sql.SQLException
updateTimestamp
in interface java.sql.ResultSet
java.sql.SQLException
public int[] getMatchColumnIndexes() throws java.sql.SQLException
getMatchColumnIndexes
in interface javax.sql.rowset.Joinable
java.sql.SQLException
public java.lang.String[] getMatchColumnNames() throws java.sql.SQLException
getMatchColumnNames
in interface javax.sql.rowset.Joinable
java.sql.SQLException
public void setMatchColumn(int columnIdx) throws java.sql.SQLException
setMatchColumn
in interface javax.sql.rowset.Joinable
java.sql.SQLException
public void setMatchColumn(java.lang.String columnName) throws java.sql.SQLException
setMatchColumn
in interface javax.sql.rowset.Joinable
java.sql.SQLException
public void setMatchColumn(int[] columnIdxes) throws java.sql.SQLException
setMatchColumn
in interface javax.sql.rowset.Joinable
java.sql.SQLException
public void setMatchColumn(java.lang.String[] columnNames) throws java.sql.SQLException
setMatchColumn
in interface javax.sql.rowset.Joinable
java.sql.SQLException
public void unsetMatchColumn(int columnIdx) throws java.sql.SQLException
unsetMatchColumn
in interface javax.sql.rowset.Joinable
java.sql.SQLException
public void unsetMatchColumn(java.lang.String columnName) throws java.sql.SQLException
unsetMatchColumn
in interface javax.sql.rowset.Joinable
java.sql.SQLException
public void unsetMatchColumn(int[] columnIdxes) throws java.sql.SQLException
unsetMatchColumn
in interface javax.sql.rowset.Joinable
java.sql.SQLException
public void unsetMatchColumn(java.lang.String[] columnNames) throws java.sql.SQLException
unsetMatchColumn
in interface javax.sql.rowset.Joinable
java.sql.SQLException
public void execute() throws java.sql.SQLException
execute
in interface javax.sql.RowSet
java.sql.SQLException
public void deleteRow() throws java.sql.SQLException
deleteRow
in interface java.sql.ResultSet
java.sql.SQLException
public void cancelRowUpdates() throws java.sql.SQLException
cancelRowUpdates
in interface java.sql.ResultSet
java.sql.SQLException
public void commit() throws java.sql.SQLException
commit
in interface javax.sql.rowset.JdbcRowSet
java.sql.SQLException
public boolean getAutoCommit() throws java.sql.SQLException
getAutoCommit
in interface javax.sql.rowset.JdbcRowSet
java.sql.SQLException
public void setAutoCommit(boolean autoCommit) throws java.sql.SQLException
setAutoCommit
in interface javax.sql.rowset.JdbcRowSet
java.sql.SQLException
public void rollback() throws java.sql.SQLException
rollback
in interface javax.sql.rowset.JdbcRowSet
java.sql.SQLException
public void rollback(java.sql.Savepoint s) throws java.sql.SQLException
rollback
in interface javax.sql.rowset.JdbcRowSet
java.sql.SQLException
public void close() throws java.sql.SQLException
close
in interface java.lang.AutoCloseable
close
in interface java.sql.ResultSet
java.sql.SQLException
public int getHoldability() throws java.sql.SQLException
getHoldability
in interface java.sql.ResultSet
java.sql.SQLException
public boolean isClosed() throws java.sql.SQLException
isClosed
in interface java.sql.ResultSet
java.sql.SQLException
public <T> T unwrap(java.lang.Class<T> iface) throws java.sql.SQLException
unwrap
in interface java.sql.Wrapper
java.sql.SQLException
public boolean isWrapperFor(java.lang.Class<?> iface) throws java.sql.SQLException
isWrapperFor
in interface java.sql.Wrapper
java.sql.SQLException
public <T> T getObject(int columnIndex, java.lang.Class<T> type) throws java.sql.SQLException
getObject
in interface java.sql.ResultSet
java.sql.SQLException
public <T> T getObject(java.lang.String columnLabel, java.lang.Class<T> type) throws java.sql.SQLException
getObject
in interface java.sql.ResultSet
java.sql.SQLException