Scrollable ResultSet/CallableStatement
843854Mar 17 2003 — edited Mar 18 2003If 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