From: | "Vsevolod (Simon) Ilyushchenko" <simonf(at)cshl(dot)edu> |
---|---|
To: | pgsql-sql(at)postgresql(dot)org |
Subject: | cursor "<unnamed portal 1>" does not exist |
Date: | 2005-06-15 22:45:56 |
Message-ID: | 42B0AFA4.202@cshl.edu |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
Hi,
I'm querying a Postgres 8.0.3 database from Java via the 8.0-311 JDBC
driver. It mostly works. I ran into the "cursor does not exist" problem,
but was able to fix it with
connection.setAutoCommit(false);
Or so I thought.
There are several JSP pages which still throw the 'cursor "<unnamed
portal 1>" does not exist' error. Everything works well if I call the
same Java fuction on the command line.
I tried to observe the network packets and found an interesting thing:
the "select *" queries and responses that works look like this:
Request S_1 BEGIN select * from user_pkg.GetPerson_fcn($1) as result 571
Response BEGIN result <unnamed portal 1>C SELECT
While those that fail look like this:
Request select * from material_pkg.ListCautions_fcn($1,$2) as result B
Response result <unnamed portal 1>C SELECT
Note that the successful ones contain strings "S_1" and "BEGIN", and the
failed ones do not. However, there also are successful queries without
these strings, but they are not "select *" queries. Eg,
Request SELECT typname FROM pg_catalog.pg_type WHERE oid=$1 1790
Response typname refcursorC SELECT
When I do it successfully on the command line, the "S_1" and "BEGIN"
lines are also present in the query.
I have a feeling it's some idiosyncrasy that I'm not familiar with. Does
"BEGIN" refer to the beginning of a trasaction?
I will be grateful for any suggestions.
Simon
--
Simon (Vsevolod ILyushchenko) simonf(at)cshl(dot)edu
http://www.simonf.com
Terrorism is a tactic and so to declare war on terrorism
is equivalent to Roosevelt's declaring war on blitzkrieg.
Zbigniew Brzezinski, U.S. national security advisor, 1977-81
From | Date | Subject | |
---|---|---|---|
Next Message | Neil Dugan | 2005-06-16 03:38:58 | funny update, say update 1, updated 1 added 2nd. |
Previous Message | Ruediger Herrmann | 2005-06-15 22:10:56 | Dynamic PL/pgSQL |