Jan Willem Luiten wrote:
> This seems to be caused by the jdbc adaptor reading the complete
> resultset instead of using a scrollable cursor. Is there a way to solve
> this, eg by setting the fetchsize in some way?
Yes: Statement.setFetchSize(). Currently it only takes effect with
autocommit off and TYPE_FORWARD_ONLY resultsets.
-O