Skip to Main Content

Java Database Connectivity (JDBC)

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Scrollable ResultSet/CallableStatement

843854Mar 17 2003 — edited Mar 18 2003
If one needs a Scrollable ResultSet one first creates a Statement with


Statement stmt = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,
ResultSet.CONCUR_READ_ONLY);

and gets a resultSet object with an "executeQuery", so for so good...


Now how does one get a scrollable result when one gets the resultset object directly from a CallableStatement getObject() method ?

Any help here is highly appreciated...


TIA
Narsi






Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 15 2003
Added on Mar 17 2003
2 comments
261 views