Java.Sql.ResultSet Members

The members of Java.Sql.ResultSet are listed below.

See Also: Inherited members from System.Object

Public Fields

const
CloseCursorsAtCommitint (2). A constant used to indicate that a ResultSet object must be closed when the method Connection.commit is invoked.
const
ConcurReadOnlyint (1007). A constant used to indicate the concurrency mode for a ResultSet object that cannot be updated.
const
ConcurUpdatableint (1008). A constant used to indicate the concurrency mode for a ResultSet object that can be updated.
const
FetchForwardint (1000). A constant used to indicate processing of the rows of a ResultSet in the forward direction, first to last.
const
FetchReverseint (1001). A constant used to indicate processing of the rows of a ResultSet in the reverse direction, last to first.
const
FetchUnknownint (1002). A constant used to indicate that the order of processing of the rows of a ResultSet is unknown.
const
HoldCursorsOverCommitint (1). A constant used to indicate that a ResultSet object must not be closed when the method Connection.commit is invoked.
const
TypeForwardOnlyint (1003). A constant used to indicate a ResultSet object whose cursor can only move forward.
const
TypeScrollInsensitiveint (1004). A constant used to indicate a ResultSet object which is scrollable but is insensitive to changes made by others.
const
TypeScrollSensitiveint (1005). A constant used to indicate a ResultSet object which is scrollable and sensitive to changes made by others.