When you have
query.setStartAtIndex(min);
query.setEndAtIndex(max);
OJB use a JDBC scrollcursor to have the right "min" position
(rs.absolute("min") )
How to keep the associated ResultSet to reuse it with new value of min & max
(because initialization of the first time takes a long time)?
I use OJB 1.0RC4, Oracle9 and 1 million of row in my table ....
Thanks all.
