Re: Cursor problems - Mailing list pgsql-jdbc

From Oliver Jowett
Subject Re: Cursor problems
Date
Msg-id 44B029D6.9000807@opencloud.com
Whole thread Raw
In response to Cursor problems  (Jeffrey Melloy <jmelloy@visualdistortion.org>)
List pgsql-jdbc
Jeffrey Melloy wrote:
> I was having trouble doing checkpoint commits on a cursor.  It's
> possible I'm misunderstanding something basic, but it seems like
> commiting on the same connection a cursor is on breaks the cursor.

[...]

> When I run it, I get the following error after the commit:
> ERROR: portal "C_3" does not exist

ResultSets aren't guaranteed to stay valid across a commit unless you
specify ResultSet.HOLD_CURSORS_OVER_COMMIT when creating the statement
(the default is ResultSet.CLOSE_CURSORS_AT_COMMIT). In theory we should
actually close the ResultSet in your case (and you'd get a "resultset is
closed" exception the next time you used it), but currently we don't do
that so instead you see that "portal does not exist" error the next time
the ResultSet needs to refill itself from the server.

Unfortunately the driver doesn't support HOLD_CURSORS_OVER_COMMIT yet.
One simple implementation is just to disable use of cursors internally
when HOLD_CURSORS is specified, but that somewhat defeats the purpose..
To do it properly either needs a protocol change so that
protocol-created portals can be created WITH HOLD, or we'd need to start
using explicit DECLARE CURSOR statements rather than protocol-level portals.

-O

pgsql-jdbc by date:

Previous
From: Jeffrey Melloy
Date:
Subject: Cursor problems
Next
From: "Giovanni M."
Date:
Subject: Re: Dúvida