The members of Java.Sql.ResultSet are listed below.
See Also: Inherited members from System.Object
const | CloseCursorsAtCommit | int (2). A constant used to indicate that a ResultSet object must be closed when the method Connection.commit is invoked. |
const | ConcurReadOnly | int (1007). A constant used to indicate the concurrency mode for a ResultSet object that cannot be updated. |
const | ConcurUpdatable | int (1008). A constant used to indicate the concurrency mode for a ResultSet object that can be updated. |
const | FetchForward | int (1000). A constant used to indicate processing of the rows of a ResultSet in the forward direction, first to last. |
const | FetchReverse | int (1001). A constant used to indicate processing of the rows of a ResultSet in the reverse direction, last to first. |
const | FetchUnknown | int (1002). A constant used to indicate that the order of processing of the rows of a ResultSet is unknown. |
const | HoldCursorsOverCommit | int (1). A constant used to indicate that a ResultSet object must not be closed when the method Connection.commit is invoked. |
const | TypeForwardOnly | int (1003). A constant used to indicate a ResultSet object whose cursor can only move forward. |
const | TypeScrollInsensitive | int (1004). A constant used to indicate a ResultSet object which is scrollable but is insensitive to changes made by others. |
const | TypeScrollSensitive | int (1005). A constant used to indicate a ResultSet object which is scrollable and sensitive to changes made by others. |