Wednesday 1 October 2014

ResultSet Types

There are three types of result set. Each one represented by a constant in ResultSet interface.

Type
Constant
Description
Forward-only
TYPE_FORWARD_ONLY
The constant indicating the type for a ResultSet object whose cursor may move only forward.
Scroll-insensitive
TYPE_SCROLL_INSENSITIVE
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.
Scroll sensitive
TYPE_SCROLL_SENSITIVE
The constant indicating the type for a ResultSet object that is scrollable and generally sensitive to changes to the data that underlies the ResultSet.



Prevoius                                                 Next                                                 Home

No comments:

Post a Comment