Fetch absolute possible with JDBC 2 but with PL/SQL ?
Oracle permits absolute (or prior) result set positionning through JDBC 2.
How can I declare such a cursor in Oracle 8i PL/SQL (8.1.7) ?
In fact, I want (I have to ...) to create a scrollable cursor in a PL/SQL stored procedure and return it to a Java Application through JDBC 2.
This Java Application may then use absolute positionning requests ( myResultSet.absolute(pos) ).
If Oracle 8i does it for JDBC 2 (I tested it successfully), it can do it for PL/SQL ? (I guess)
I have also read that Rdb7 SQL does it natively.