Re: Resultset holdability - Mailing list pgsql-jdbc

From Oliver Jowett
Subject Re: Resultset holdability
Date
Msg-id 43597344.3080005@opencloud.com
Whole thread Raw
In response to Re: Resultset holdability  (Geert Bevin <gbevin@uwyn.com>)
Responses Re: Resultset holdability
List pgsql-jdbc
Geert Bevin wrote:

>> Have you turned autocommit off?
>
> No

The driver won't use portal-based resultsets unless you turn off
autocommit. This is because it can't create the equivalent of a WITH
HOLD cursor via protocol-level portals, so any portal created will be
closed at the end of the creating transaction. With autocommit on, the
transaction ends immediately after statement execution, so using a
portal is pointless.

Otherwise it sounds like you meet all the requirements (V3 protocol,
TYPE_FORWARD_ONLY, and fetchsize > 0).

-O

pgsql-jdbc by date:

Previous
From: Geert Bevin
Date:
Subject: Re: Resultset holdability
Next
From: Geert Bevin
Date:
Subject: Re: Resultset holdability