All Superinterfaces:
AutoCloseable, ResultSet, Wrapper
All Known Subinterfaces:
CachedRowSet, FilteredRowSet, JdbcRowSet, JoinRowSet, SyncResolver, WebRowSet

  • Field Summary

    Fields declared in interface ResultSet

    CLOSE_CURSORS_AT_COMMIT, CONCUR_READ_ONLY, CONCUR_UPDATABLE, FETCH_FORWARD, FETCH_REVERSE, FETCH_UNKNOWN, HOLD_CURSORS_OVER_COMMIT, TYPE_FORWARD_ONLY, TYPE_SCROLL_INSENSITIVE, TYPE_SCROLL_SENSITIVE

    static final int

    The constant indicating that open ResultSet objects with this holdability will be closed when the current transaction is committed.

    static final int

    The constant indicating the concurrency mode for a ResultSet object that may NOT be updated.

    static final int

    The constant indicating the concurrency mode for a ResultSet object that may be updated.

    static final int

    The constant indicating that the rows in a result set will be processed in a forward direction; first-to-last.

    static final int

    The constant indicating that the rows in a result set will be processed in a reverse direction; last-to-first.

    static final int

    The constant indicating that the order in which rows in a result set will be processed is unknown.

    static final int

    The constant indicating that open ResultSet objects with this holdability will remain open when the current transaction is committed.

    static final int

    The constant indicating the type for a ResultSet object whose cursor may move only forward.

    static final int

    The constant indicating the type for a ResultSet object that is scrollable but generally not sensitive to changes to the data that underlies the ResultSet.

    static final int

    The constant indicating the type for a ResultSet object that is scrollable and generally sensitive to changes to the data that underlies the ResultSet.

  • Method Summary

    void

    Registers the given listener so that it will be notified of events that occur on this RowSet object.

    void

    Clears the parameters set for this RowSet object's command.

    void

    execute()

    Fills this RowSet object with data.

    Retrieves this RowSet object's command property.

    Retrieves the logical name that identifies the data source for this RowSet object.

    boolean

    Retrieves whether escape processing is enabled for this RowSet object.

    int

    Retrieves the maximum number of bytes that may be returned for certain column values.

    int

    Retrieves the maximum number of rows that this RowSet object can contain.

    Retrieves the password used to create a database connection.

    int

    Retrieves the maximum number of seconds the driver will wait for a statement to execute.

    int

    Retrieves the transaction isolation level set for this RowSet object.

    Retrieves the Map object associated with this RowSet object, which specifies the custom mapping of SQL user-defined types, if any.

    getUrl()

    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.

    Retrieves the username used to create a database connection for this RowSet object.

    boolean

    Retrieves whether this RowSet object is read-only.

    void

    Removes the specified listener from the list of components that will be notified when an event occurs on this RowSet object.

    void

    Sets the designated parameter in this RowSet object's command with the given Array value.

    void

    Sets the designated parameter in this RowSet object's command to the given input stream.

    void

    setAsciiStream(int parameterIndex, InputStream x, int length)

    Sets the designated parameter in this RowSet object's command to the given java.io.InputStream value.

    void

    Sets the designated parameter to the given input stream.

    void

    Sets the designated parameter to the given input stream, which will have the specified number of bytes.

    void

    Sets the designated parameter in this RowSet object's command to the given java.math.BigDecimal value.

    void

    Sets the designated parameter to the given java.math.BigDecimal value.

    void

    Sets the designated parameter in this RowSet object's command to the given input stream.

    void

    Sets the designated parameter in this RowSet object's command to the given java.io.InputStream value.

    void

    Sets the designated parameter to the given input stream.

    void

    Sets the designated parameter to the given input stream, which will have the specified number of bytes.

    void

    Sets the designated parameter to a InputStream object.

    void

    setBlob(int parameterIndex, InputStream inputStream, long length)

    Sets the designated parameter to a InputStream object.

    void

    Sets the designated parameter in this RowSet object's command with the given Blob value.

    void

    Sets the designated parameter to a InputStream object.

    void

    Sets the designated parameter to a InputStream object.

    void

    Sets the designated parameter to the given java.sql.Blob object.

    void

    setBoolean(int parameterIndex, boolean x)

    Sets the designated parameter in this RowSet object's command to the given Java boolean value.

    void

    setBoolean(String parameterName, boolean x)

    Sets the designated parameter to the given Java boolean value.

    void

    setByte(int parameterIndex, byte x)

    Sets the designated parameter in this RowSet object's command to the given Java byte value.

    void

    setByte(String parameterName, byte x)

    Sets the designated parameter to the given Java byte value.

    void

    setBytes(int parameterIndex, byte[] x)

    Sets the designated parameter in this RowSet object's command to the given Java array of byte values.

    void

    setBytes(String parameterName, byte[] x)

    Sets the designated parameter to the given Java array of bytes.

    void

    setCharacterStream(int parameterIndex, Reader reader)

    Sets the designated parameter in this RowSet object's command to the given Reader object.

    void

    setCharacterStream(int parameterIndex, Reader reader, int length)

    Sets the designated parameter in this RowSet object's command to the given java.io.Reader value.

    void

    Sets the designated parameter to the given Reader object.

    void

    Sets the designated parameter to the given Reader object, which is the given number of characters long.

    void

    setClob(int parameterIndex, Reader reader)

    Sets the designated parameter to a Reader object.

    void

    setClob(int parameterIndex, Reader reader, long length)

    Sets the designated parameter to a Reader object.

    void

    Sets the designated parameter in this RowSet object's command with the given Clob value.

    void

    Sets the designated parameter to a Reader object.

    void

    setClob(String parameterName, Reader reader, long length)

    Sets the designated parameter to a Reader object.

    void

    Sets the designated parameter to the given java.sql.Clob object.

    void

    Sets this RowSet object's command property to the given SQL query.

    void

    setConcurrency(int concurrency)

    Sets the concurrency of this RowSet object to the given concurrency level.

    void

    Sets the data source name property for this RowSet object to the given String.

    void

    setDate(int parameterIndex, Date x)

    Sets the designated parameter in this RowSet object's command to the given java.sql.Date value.

    void

    Sets the designated parameter in this RowSet object's command with the given java.sql.Date value.

    void

    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

    Sets the designated parameter to the given java.sql.Date value, using the given Calendar object.

    void

    setDouble(int parameterIndex, double x)

    Sets the designated parameter in this RowSet object's command to the given Java double value.

    void

    setDouble(String parameterName, double x)

    Sets the designated parameter to the given Java double value.

    void

    setEscapeProcessing(boolean enable)

    Sets escape processing for this RowSet object on or off.

    void

    setFloat(int parameterIndex, float x)

    Sets the designated parameter in this RowSet object's command to the given Java float value.

    void

    setFloat(String parameterName, float x)

    Sets the designated parameter to the given Java float value.

    void

    setInt(int parameterIndex, int x)

    Sets the designated parameter in this RowSet object's command to the given Java int value.

    void

    setInt(String parameterName, int x)

    Sets the designated parameter to the given Java int value.

    void

    setLong(int parameterIndex, long x)

    Sets the designated parameter in this RowSet object's command to the given Java long value.

    void

    setLong(String parameterName, long x)

    Sets the designated parameter to the given Java long value.

    void

    setMaxFieldSize(int max)

    Sets the maximum number of bytes that can be returned for a column value to the given number of bytes.

    void

    setMaxRows(int max)

    Sets the maximum number of rows that this RowSet object can contain to the specified number.

    void

    setNCharacterStream(int parameterIndex, Reader value)

    Sets the designated parameter in this RowSet object's command to a Reader object.

    void

    setNCharacterStream(int parameterIndex, Reader value, long length)

    Sets the designated parameter to a Reader object.

    void

    Sets the designated parameter to a Reader object.

    void

    Sets the designated parameter to a Reader object.

    void

    setNClob(int parameterIndex, Reader reader)

    Sets the designated parameter to a Reader object.

    void

    setNClob(int parameterIndex, Reader reader, long length)

    Sets the designated parameter to a Reader object.

    void

    setNClob(int parameterIndex, NClob value)

    Sets the designated parameter to a java.sql.NClob object.

    void

    Sets the designated parameter to a Reader object.

    void

    setNClob(String parameterName, Reader reader, long length)

    Sets the designated parameter to a Reader object.

    void

    Sets the designated parameter to a java.sql.NClob object.

    void

    setNString(int parameterIndex, String value)

    Sets the designated parameter to the given String object.

    void

    Sets the designated parameter to the given String object.

    void

    setNull(int parameterIndex, int sqlType)

    Sets the designated parameter in this RowSet object's SQL command to SQL NULL.

    void

    setNull(int paramIndex, int sqlType, String typeName)

    Sets the designated parameter in this RowSet object's SQL command to SQL NULL.

    void

    setNull(String parameterName, int sqlType)

    Sets the designated parameter to SQL NULL.

    void

    setNull(String parameterName, int sqlType, String typeName)

    Sets the designated parameter to SQL NULL.

    void

    setObject(int parameterIndex, Object x)

    Sets the designated parameter in this RowSet object's command with a Java Object.

    void

    setObject(int parameterIndex, Object x, int targetSqlType)

    Sets the designated parameter in this RowSet object's command with a Java Object.

    void

    setObject(int parameterIndex, Object x, int targetSqlType, int scaleOrLength)

    Sets the designated parameter in this RowSet object's command with the given Java Object.

    void

    Sets the value of the designated parameter with the given object.

    void

    setObject(String parameterName, Object x, int targetSqlType)

    Sets the value of the designated parameter with the given object.

    void

    setObject(String parameterName, Object x, int targetSqlType, int scale)

    Sets the value of the designated parameter with the given object.

    void

    Sets the database password for this RowSet object to the given String.

    void

    setQueryTimeout(int seconds)

    Sets the maximum time the driver will wait for a statement to execute to the given number of seconds.

    void

    setReadOnly(boolean value)

    Sets whether this RowSet object is read-only to the given boolean.

    void

    setRef(int i, Ref x)

    Sets the designated parameter in this RowSet object's command with the given Ref value.

    void

    setRowId(int parameterIndex, RowId x)

    Sets the designated parameter to the given java.sql.RowId object.

    void

    Sets the designated parameter to the given java.sql.RowId object.

    void

    setShort(int parameterIndex, short x)

    Sets the designated parameter in this RowSet object's command to the given Java short value.

    void

    setShort(String parameterName, short x)

    Sets the designated parameter to the given Java short value.

    void

    setSQLXML(int parameterIndex, SQLXML xmlObject)

    Sets the designated parameter to the given java.sql.SQLXML object.

    void

    Sets the designated parameter to the given java.sql.SQLXML object.

    void

    setString(int parameterIndex, String x)

    Sets the designated parameter in this RowSet object's command to the given Java String value.

    void

    Sets the designated parameter to the given Java String value.

    void

    setTime(int parameterIndex, Time x)

    Sets the designated parameter in this RowSet object's command to the given java.sql.Time value.

    void

    Sets the designated parameter in this RowSet object's command with the given java.sql.Time value.

    void

    Sets the designated parameter to the given java.sql.Time value.

    void

    Sets the designated parameter to the given java.sql.Time value, using the given Calendar object.

    void

    Sets the designated parameter in this RowSet object's command to the given java.sql.Timestamp value.

    void

    Sets the designated parameter in this RowSet object's command with the given java.sql.Timestamp value.

    void

    Sets the designated parameter to the given java.sql.Timestamp value.

    void

    Sets the designated parameter to the given java.sql.Timestamp value, using the given Calendar object.

    void

    setTransactionIsolation(int level)

    Sets the transaction isolation level for this RowSet object.

    void

    setType(int type)

    Sets the type of this RowSet object to the given type.

    void

    Installs the given java.util.Map object as the default type map for this RowSet object.

    void

    Sets the URL this RowSet object will use when it uses the DriverManager to create a connection.

    void

    setURL(int parameterIndex, URL x)

    Sets the designated parameter to the given java.net.URL value.

    void

    Sets the username property for this RowSet object to the given String.

    Methods declared in interface ResultSet

    absolute, afterLast, beforeFirst, cancelRowUpdates, clearWarnings, close, deleteRow, findColumn, first, getArray, getArray, getAsciiStream, getAsciiStream, getBigDecimal, getBigDecimal, getBigDecimal, getBigDecimal, getBinaryStream, getBinaryStream, getBlob, getBlob, getBoolean, getBoolean, getByte, getByte, getBytes, getBytes, getCharacterStream, getCharacterStream, getClob, getClob, getConcurrency, getCursorName, getDate, getDate, getDate, getDate, getDouble, getDouble, getFetchDirection, getFetchSize, getFloat, getFloat, getHoldability, getInt, getInt, getLong, getLong, getMetaData, getNCharacterStream, getNCharacterStream, getNClob, getNClob, getNString, getNString, getObject, getObject, getObject, getObject, getObject, getObject, getRef, getRef, getRow, getRowId, getRowId, getShort, getShort, getSQLXML, getSQLXML, getStatement, getString, getString, getTime, getTime, getTime, getTime, getTimestamp, getTimestamp, getTimestamp, getTimestamp, getType, getUnicodeStream, getUnicodeStream, getURL, getURL, getWarnings, insertRow, isAfterLast, isBeforeFirst, isClosed, isFirst, isLast, last, moveToCurrentRow, moveToInsertRow, next, previous, refreshRow, relative, rowDeleted, rowInserted, rowUpdated, setFetchDirection, setFetchSize, updateArray, updateArray, updateAsciiStream, updateAsciiStream, updateAsciiStream, updateAsciiStream, updateAsciiStream, updateAsciiStream, updateBigDecimal, updateBigDecimal, updateBinaryStream, updateBinaryStream, updateBinaryStream, updateBinaryStream, updateBinaryStream, updateBinaryStream, updateBlob, updateBlob, updateBlob, updateBlob, updateBlob, updateBlob, updateBoolean, updateBoolean, updateByte, updateByte, updateBytes, updateBytes, updateCharacterStream, updateCharacterStream, updateCharacterStream, updateCharacterStream, updateCharacterStream, updateCharacterStream, updateClob, updateClob, updateClob, updateClob, updateClob, updateClob, updateDate, updateDate, updateDouble, updateDouble, updateFloat, updateFloat, updateInt, updateInt, updateLong, updateLong, updateNCharacterStream, updateNCharacterStream, updateNCharacterStream, updateNCharacterStream, updateNClob, updateNClob, updateNClob, updateNClob, updateNClob, updateNClob, updateNString, updateNString, updateNull, updateNull, updateObject, updateObject, updateObject, updateObject, updateObject, updateObject, updateObject, updateObject, updateRef, updateRef, updateRow, updateRowId, updateRowId, updateShort, updateShort, updateSQLXML, updateSQLXML, updateString, updateString, updateTime, updateTime, updateTimestamp, updateTimestamp, wasNull

    boolean

    Moves the cursor to the given row number in this ResultSet object.

    void

    Moves the cursor to the end of this ResultSet object, just after the last row.

    void

    Moves the cursor to the front of this ResultSet object, just before the first row.

    void

    Cancels the updates made to the current row in this ResultSet object.

    void

    Clears all warnings reported on this ResultSet object.

    void

    Releases this ResultSet object's database and JDBC resources immediately instead of waiting for this to happen when it is automatically closed.

    void

    Deletes the current row from this ResultSet object and from the underlying database.

    int

    Maps the given ResultSet column label to its ResultSet column index.

    boolean

    Moves the cursor to the first row in this ResultSet object.

    Retrieves the value of the designated column in the current row of this ResultSet object as an Array object in the Java programming language.

    Retrieves the value of the designated column in the current row of this ResultSet object as an Array object in the Java programming language.

    Retrieves the value of the designated column in the current row of this ResultSet object as a stream of ASCII characters.

    Retrieves the value of the designated column in the current row of this ResultSet object as a stream of ASCII characters.

    Retrieves the value of the designated column in the current row of this ResultSet object as a java.math.BigDecimal with full precision.

    Retrieves the value of the designated column in the current row of this ResultSet object as a java.math.BigDecimal with full precision.

    Retrieves the value of the designated column in the current row of this ResultSet object as a stream of uninterpreted bytes.

    Retrieves the value of the designated column in the current row of this ResultSet object as a stream of uninterpreted bytes.

    Retrieves the value of the designated column in the current row of this ResultSet object as a Blob object in the Java programming language.

    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

    Retrieves the value of the designated column in the current row of this ResultSet object as a boolean in the Java programming language.

    boolean

    Retrieves the value of the designated column in the current row of this ResultSet object as a boolean in the Java programming language.

    byte

    Retrieves the value of the designated column in the current row of this ResultSet object as a byte in the Java programming language.

    byte

    Retrieves the value of the designated column in the current row of this ResultSet object as a byte in the Java programming language.

    byte[]

    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[]

    Retrieves the value of the designated column in the current row of this ResultSet object as a byte array in the Java programming language.

    Retrieves the value of the designated column in the current row of this ResultSet object as a java.io.Reader object.

    Retrieves the value of the designated column in the current row of this ResultSet object as a java.io.Reader object.

    Retrieves the value of the designated column in the current row of this ResultSet object as a Clob object in the Java programming language.

    Retrieves the value of the designated column in the current row of this ResultSet object as a Clob object in the Java programming language.

    int

    Retrieves the concurrency mode of this ResultSet object.

    Retrieves the name of the SQL cursor used by this ResultSet object.

    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.

    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.

    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.

    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

    Retrieves the value of the designated column in the current row of this ResultSet object as a double in the Java programming language.

    double

    Retrieves the value of the designated column in the current row of this ResultSet object as a double in the Java programming language.

    int

    Retrieves the fetch direction for this ResultSet object.

    int

    Retrieves the fetch size for this ResultSet object.

    float

    Retrieves the value of the designated column in the current row of this ResultSet object as a float in the Java programming language.

    float

    Retrieves the value of the designated column in the current row of this ResultSet object as a float in the Java programming language.

    int

    Retrieves the holdability of this ResultSet object

    int

    Retrieves the value of the designated column in the current row of this ResultSet object as an int in the Java programming language.

    int

    Retrieves the value of the designated column in the current row of this ResultSet object as an int in the Java programming language.

    long

    Retrieves the value of the designated column in the current row of this ResultSet object as a long in the Java programming language.

    long

    Retrieves the value of the designated column in the current row of this ResultSet object as a long in the Java programming language.

    Retrieves the number, types and properties of this ResultSet object's columns.

    Retrieves the value of the designated column in the current row of this ResultSet object as a java.io.Reader object.

    Retrieves the value of the designated column in the current row of this ResultSet object as a java.io.Reader object.

    Retrieves the value of the designated column in the current row of this ResultSet object as a NClob object in the Java programming language.

    Retrieves the value of the designated column in the current row of this ResultSet object as a NClob object in the Java programming language.

    Retrieves the value of the designated column in the current row of this ResultSet object as a String in the Java programming language.

    Retrieves the value of the designated column in the current row of this ResultSet object as a String in the Java programming language.

    Gets the value of the designated column in the current row of this ResultSet object as an Object in the Java programming language.

    <T> T

    Retrieves the value of the designated column in the current row of this ResultSet object and will convert from the SQL type of the column to the requested Java data type, if the conversion is supported.

    Retrieves the value of the designated column in the current row of this ResultSet object as an Object in the Java programming language.

    Gets the value of the designated column in the current row of this ResultSet object as an Object in the Java programming language.

    <T> T

    Retrieves the value of the designated column in the current row of this ResultSet object and will convert from the SQL type of the column to the requested Java data type, if the conversion is supported.

    Retrieves the value of the designated column in the current row of this ResultSet object as an Object in the Java programming language.

    Retrieves the value of the designated column in the current row of this ResultSet object as a Ref object in the Java programming language.

    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

    Retrieves the current row number.

    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.

    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.

    short

    Retrieves the value of the designated column in the current row of this ResultSet object as a short in the Java programming language.

    short

    Retrieves the value of the designated column in the current row of this ResultSet object as a short in the Java programming language.

    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.

    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.

    Retrieves the Statement object that produced this ResultSet object.

    Retrieves the value of the designated column in the current row of this ResultSet object as a String in the Java programming language.

    Retrieves the value of the designated column in the current row of this ResultSet object as a String in the Java programming language.

    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.

    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.

    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.

    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.

    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.

    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.

    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.

    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

    Retrieves the type of this ResultSet object.

    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.

    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.

    Retrieves the first warning reported by calls on this ResultSet object.

    void

    Inserts the contents of the insert row into this ResultSet object and into the database.

    boolean

    Retrieves whether the cursor is after the last row in this ResultSet object.

    boolean

    Retrieves whether the cursor is before the first row in this ResultSet object.

    boolean

    Retrieves whether this ResultSet object has been closed.

    boolean

    Retrieves whether the cursor is on the first row of this ResultSet object.

    boolean

    Retrieves whether the cursor is on the last row of this ResultSet object.

    boolean

    Moves the cursor to the last row in this ResultSet object.

    void

    Moves the cursor to the remembered cursor position, usually the current row.

    void

    Moves the cursor to the insert row.

    boolean

    Moves the cursor forward one row from its current position.

    boolean

    Moves the cursor to the previous row in this ResultSet object.

    void

    Refreshes the current row with its most recent value in the database.

    boolean

    Moves the cursor a relative number of rows, either positive or negative.

    boolean

    Retrieves whether a row has been deleted.

    boolean

    Retrieves whether the current row has had an insertion.

    boolean

    Retrieves whether the current row has been updated.

    void

    Gives a hint as to the direction in which the rows in this ResultSet object will be processed.

    void

    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

    Updates the designated column with a java.sql.Array value.

    void

    Updates the designated column with a java.sql.Array value.

    void

    Updates the designated column with an ascii stream value.

    void

    Updates the designated column with an ascii stream value, which will have the specified number of bytes.

    void

    Updates the designated column with an ascii stream value, which will have the specified number of bytes.

    void

    Updates the designated column with an ascii stream value.

    void

    Updates the designated column with an ascii stream value, which will have the specified number of bytes.

    void

    Updates the designated column with an ascii stream value, which will have the specified number of bytes.

    void

    Updates the designated column with a java.math.BigDecimal value.

    void

    Updates the designated column with a java.sql.BigDecimal value.

    void

    Updates the designated column with a binary stream value.

    void

    Updates the designated column with a binary stream value, which will have the specified number of bytes.

    void

    Updates the designated column with a binary stream value, which will have the specified number of bytes.

    void

    Updates the designated column with a binary stream value.

    void

    Updates the designated column with a binary stream value, which will have the specified number of bytes.

    void

    Updates the designated column with a binary stream value, which will have the specified number of bytes.

    void

    Updates the designated column using the given input stream.

    void

    Updates the designated column using the given input stream, which will have the specified number of bytes.

    void

    Updates the designated column with a java.sql.Blob value.

    void

    Updates the designated column using the given input stream.

    void

    Updates the designated column using the given input stream, which will have the specified number of bytes.

    void

    Updates the designated column with a java.sql.Blob value.

    void

    Updates the designated column with a boolean value.

    void

    Updates the designated column with a boolean value.

    void

    Updates the designated column with a byte value.

    void

    Updates the designated column with a byte value.

    void

    Updates the designated column with a byte array value.

    void

    Updates the designated column with a byte array value.

    void

    Updates the designated column with a character stream value.

    void

    Updates the designated column with a character stream value, which will have the specified number of bytes.

    void

    Updates the designated column with a character stream value, which will have the specified number of bytes.

    void

    Updates the designated column with a character stream value.

    void

    Updates the designated column with a character stream value, which will have the specified number of bytes.

    void

    Updates the designated column with a character stream value, which will have the specified number of bytes.

    void

    Updates the designated column using the given Reader object.

    void

    Updates the designated column using the given Reader object, which is the given number of characters long.

    void

    Updates the designated column with a java.sql.Clob value.

    void

    Updates the designated column using the given Reader object.

    void

    Updates the designated column using the given Reader object, which is the given number of characters long.

    void

    Updates the designated column with a java.sql.Clob value.

    void

    Updates the designated column with a java.sql.Date value.

    void

    Updates the designated column with a java.sql.Date value.

    void

    Updates the designated column with a double value.

    void

    Updates the designated column with a double value.

    void

    Updates the designated column with a float value.

    void

    Updates the designated column with a float value.

    void

    Updates the designated column with an int value.

    void

    Updates the designated column with an int value.

    void

    Updates the designated column with a long value.

    void

    Updates the designated column with a long value.

    void

    Updates the designated column with a character stream value.

    void

    Updates the designated column with a character stream value, which will have the specified number of bytes.

    void

    Updates the designated column with a character stream value.

    void

    Updates the designated column with a character stream value, which will have the specified number of bytes.

    void

    Updates the designated column using the given Reader The data will be read from the stream as needed until end-of-stream is reached.

    void

    Updates the designated column using the given Reader object, which is the given number of characters long.

    void

    Updates the designated column with a java.sql.NClob value.

    void

    Updates the designated column using the given Reader object.

    void

    Updates the designated column using the given Reader object, which is the given number of characters long.

    void

    Updates the designated column with a java.sql.NClob value.

    void

    Updates the designated column with a String value.

    void

    Updates the designated column with a String value.

    void

    Updates the designated column with a null value.

    void

    Updates the designated column with a null value.

    void

    Updates the designated column with an Object value.

    void

    Updates the designated column with an Object value.

    default void

    Updates the designated column with an Object value.

    default void

    Updates the designated column with an Object value.

    void

    Updates the designated column with an Object value.

    void

    Updates the designated column with an Object value.

    default void

    Updates the designated column with an Object value.

    default void

    Updates the designated column with an Object value.

    void

    Updates the designated column with a java.sql.Ref value.

    void

    Updates the designated column with a java.sql.Ref value.

    void

    Updates the underlying database with the new contents of the current row of this ResultSet object.

    void

    Updates the designated column with a RowId value.

    void

    Updates the designated column with a RowId value.

    void

    Updates the designated column with a short value.

    void

    Updates the designated column with a short value.

    void

    Updates the designated column with a java.sql.SQLXML value.

    void

    Updates the designated column with a java.sql.SQLXML value.

    void

    Updates the designated column with a String value.

    void

    Updates the designated column with a String value.

    void

    Updates the designated column with a java.sql.Time value.

    void

    Updates the designated column with a java.sql.Time value.

    void

    Updates the designated column with a java.sql.Timestamp value.

    void

    Updates the designated column with a java.sql.Timestamp value.

    boolean

    Reports whether the last column read had a value of SQL NULL.

    Methods declared in interface Wrapper

    isWrapperFor, unwrap

    boolean

    Returns true if this either implements the interface argument or is directly or indirectly a wrapper for an object that does.

    <T> T

    Returns an object that implements the given interface to allow access to non-standard methods, or standard methods not exposed by the proxy.

  • Method Details

    • getUrl

    • setUrl

    • getDataSourceName

    • setDataSourceName

    • getUsername

    • setUsername

    • getPassword

    • setPassword

    • getTransactionIsolation

    • setTransactionIsolation

    • getTypeMap

    • setTypeMap

    • getCommand

    • setCommand

    • isReadOnly

    • setReadOnly

    • getMaxFieldSize

    • setMaxFieldSize

    • getMaxRows

    • setMaxRows

    • getEscapeProcessing

    • setEscapeProcessing

    • getQueryTimeout

    • setQueryTimeout

    • setType

    • setConcurrency

    • setNull

    • setNull

    • setNull

    • setNull

    • setBoolean

    • setBoolean

    • setByte

    • setByte

    • setShort

    • setShort

    • setInt

    • setInt

    • setLong

    • setLong

    • setFloat

    • setFloat

    • setDouble

    • setDouble

    • setBigDecimal

    • setBigDecimal

    • setString

    • setString

    • setBytes

    • setBytes

    • setDate

    • setTime

    • setTimestamp

    • setTimestamp

    • setAsciiStream

    • setAsciiStream

    • setBinaryStream

    • setBinaryStream

    • setCharacterStream

    • setCharacterStream

    • setAsciiStream

    • setAsciiStream

    • setBinaryStream

    • setBinaryStream

    • setCharacterStream

    • setCharacterStream

    • setNCharacterStream

    • setObject

    • setObject

    • setObject

    • setObject

    • setObject

    • setObject

    • setRef

    • setBlob

    • setBlob

    • setBlob

    • setBlob

    • setBlob

    • setBlob

    • setClob

    • setClob

    • setClob

    • setClob

    • setClob

    • setClob

    • setArray

    • setDate

    • setDate

    • setDate

    • setTime

    • setTime

    • setTime

    • setTimestamp

    • setTimestamp

    • clearParameters

    • execute

    • addRowSetListener

    • removeRowSetListener

    • setSQLXML

    • setSQLXML

    • setRowId

    • setRowId

    • setNString

    • setNString

    • setNCharacterStream

    • setNCharacterStream

    • setNCharacterStream

    • setNClob

    • setNClob

    • setNClob

    • setNClob

    • setNClob

    • setNClob

    • setURL