API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.sql.rowset. WebRowSet View Source
Author(s)
Since
Version
Serial
Hierarchy
 Wrapper
      ResultSet
          RowSet
              CachedRowSet
                  WebRowSet
Subinterfaces
Description
public interface WebRowSet
  The standard interface that all implementations of a WebRowSet must implement.
Methods
Hide/Show inherited methods
public void readXml (InputStream iStream) throws SQLException IOException
  Reads a stream based XML input to populate this WebRowSet object.
public void readXml (Reader reader) throws SQLException
  Reads a WebRowSet object in its XML format from the given Reader object.
public void writeXml (OutputStream oStream) throws SQLException IOException
  Writes the data, properties, and metadata for this WebRowSet object to the given OutputStream object in XML format.
public void writeXml (ResultSet rs, OutputStream oStream) throws SQLException IOException
  Populates this WebRowSet object with the contents of the given ResultSet object and writes its data, properties, and metadata to the given OutputStream object in XML format.
public void writeXml (ResultSet rs, Writer writer) throws SQLException
  Populates this WebRowSet object with the contents of the given ResultSet object and writes its data, properties, and metadata to the given Writer object in XML format.
public void writeXml (Writer writer) throws SQLException
  Writes the data, properties, and metadata for this WebRowSet object to the given Writer object in XML format.
Fields
Hide/Show inherited fields
publicfinalstatic int CLOSE_CURSORS_AT_COMMIT = "2" [Inherited From CachedRowSet]
  The constant indicating that open ResultSet objects with this holdability will be closed when the current transaction is commited.
publicfinalstatic boolean COMMIT_ON_ACCEPT_CHANGES = "true" [Inherited From CachedRowSet]
  Causes the CachedRowSet object's SyncProvider to commit the changes when acceptChanges() is called.
publicfinalstatic int CONCUR_READ_ONLY = "1007" [Inherited From CachedRowSet]
  The constant indicating the concurrency mode for a ResultSet object that may NOT be updated.
publicfinalstatic int CONCUR_UPDATABLE = "1008" [Inherited From CachedRowSet]
  The constant indicating the concurrency mode for a ResultSet object that may be updated.
publicfinalstatic int FETCH_FORWARD = "1000" [Inherited From CachedRowSet]
  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 CachedRowSet]
  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 CachedRowSet]
  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 CachedRowSet]
  The constant indicating that open ResultSet objects with this holdability will remain open when the current transaction is commited.
publicfinalstatic String PUBLIC_XML_SCHEMA = "--//Sun Microsystems, Inc.//XSD Schema//EN"
The public identifier for the XML Schema definition that defines the XML tags and their valid values for a WebRowSet implementation.
publicfinalstatic String SCHEMA_SYSTEM_ID = "http://java.sun.com/xml/ns/jdbc/webrowset.xsd"
The URL for the XML Schema definition file that defines the XML tags and their valid values for a WebRowSet implementation.
publicfinalstatic int TYPE_FORWARD_ONLY = "1003" [Inherited From CachedRowSet]
  The constant indicating the type for a ResultSet object whose cursor may move only forward.
publicfinalstatic int TYPE_SCROLL_INSENSITIVE = "1004" [Inherited From CachedRowSet]
  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 CachedRowSet]
  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