Re: Java and Currval - Mailing list pgsql-sql

From Bruno Wolff III
Subject Re: Java and Currval
Date
Msg-id 20050502174111.GA27823@wolff.to
Whole thread Raw
In response to Java and Currval  ("Sam Adams" <samadams@myfastmail.com>)
List pgsql-sql
On Mon, May 02, 2005 at 17:30:12 +0100, Sam Adams <samadams@myfastmail.com> wrote:
> I'm having trouble getting the currval function to work from a Java
> program (or from Postgres at all). I want to get the value of addressid
> in the table taddress. The best I seem to be able to come up with is
> 'SELECT currval(taddress.addressid)'. However this gives me the error
> 'ERROR:  relation "1" does not exist' or whatever the number should be.
> I've tried lots of variations but can't seem to work it out. What am I
> doing wrong? Thanks.

I don't know what JAVA brings to the mix, but the argument to currval
is a string. Before version 8 you would do something like:
SELECT currval('taddress_addressid_seq')
This string isn't guaranteed to work, but would normally be the correct
one. In 8.0 there is a function that will return the sequence name.
Note that you must have also done a nextval or setval call on that
sequence in the current session or the value is undefined and trying to
access it will result in an error.


pgsql-sql by date:

Previous
From: Volkan YAZICI
Date:
Subject: Re: Java and Currval
Next
From: "Joel Fradkin"
Date:
Subject: odd error