API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.sql.rowset. JdbcRowSet View Source
Author(s)
Jonathan Bruce
Since
Version
Serial
Hierarchy
 Wrapper
      ResultSet
          RowSet
              JdbcRowSet
Subinterfaces
Description
public interface JdbcRowSet
  The standard interface that all standard implementations of JdbcRowSet must implement.
See also:   
Methods
Hide/Show inherited methods
public void commit () throws SQLException
  Each JdbcRowSet contains a Connection object from the ResultSet or JDBC properties passed to it's constructors.
public boolean getAutoCommit () throws SQLException
  Each JdbcRowSet contains a Connection object from the original ResultSet or JDBC properties passed to it.
public RowSetWarning getRowSetWarnings () throws SQLException
  Retrieves the first warning reported by calls on this JdbcRowSet object.
public boolean getShowDeleted () throws SQLException
  Retrieves a boolean indicating whether rows marked for deletion appear in the set of current rows.
public void rollback () throws SQLException
  Each JdbcRowSet contains a Connection object from the original ResultSet or JDBC properties passed to it.
public void rollback (Savepoint s) throws SQLException
  Each JdbcRowSet contains a Connection object from the original ResultSet or JDBC properties passed to it.
public void setAutoCommit (boolean autoCommit) throws SQLException
  Each JdbcRowSet contains a Connection object from the original ResultSet or JDBC properties passed to it.
public void setShowDeleted (boolean b) throws SQLException
  Sets the property showDeleted to the given boolean value.
Fields
Hide/Show inherited fields
publicfinalstatic int CLOSE_CURSORS_AT_COMMIT = "2" [Inherited From RowSet]
  The constant indicating that open ResultSet objects with this holdability will be closed when the current transaction is commited.
publicfinalstatic int CONCUR_READ_ONLY = "1007" [Inherited From RowSet]
  The constant indicating the concurrency mode for a ResultSet object that may NOT be updated.
publicfinalstatic int CONCUR_UPDATABLE = "1008" [Inherited From RowSet]
  The constant indicating the concurrency mode for a ResultSet object that may be updated.
publicfinalstatic int FETCH_FORWARD = "1000" [Inherited From RowSet]
  The constant indicating that the rows in a result set will be processed in a forward direction; first-to-last.
publicfinalstatic int FETCH_REVERSE = "1001" [Inherited From RowSet]
  The constant indicating that the rows in a result set will be processed in a reverse direction; last-to-first.
publicfinalstatic int FETCH_UNKNOWN = "1002" [Inherited From RowSet]
  The constant indicating that the order in which rows in a result set will be processed is unknown.
publicfinalstatic int HOLD_CURSORS_OVER_COMMIT = "1" [Inherited From RowSet]
  The constant indicating that open ResultSet objects with this holdability will remain open when the current transaction is commited.
publicfinalstatic int TYPE_FORWARD_ONLY = "1003" [Inherited From RowSet]
  The constant indicating the type for a ResultSet object whose cursor may move only forward.
publicfinalstatic int TYPE_SCROLL_INSENSITIVE = "1004" [Inherited From RowSet]
  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.
publicfinalstatic int TYPE_SCROLL_SENSITIVE = "1005" [Inherited From RowSet]
  The constant indicating the type for a ResultSet object that is scrollable and generally sensitive to changes to the data that underlies the ResultSet.
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar