Re: Fw: postgresql experts please help

Поиск
Список
Период
Сортировка
От Andrei Ilitchev
Тема Re: Fw: postgresql experts please help
Дата
Msg-id 00d601c811b7$47c1a6e0$4c349c0a@ca.oracle.com
обсуждение исходный текст
Ответ на Fw: postgresql experts please help  ("Andrei Ilitchev" <andrei.ilitchev@oracle.com>)
Ответы Re: Fw: postgresql experts please help  (Kris Jurka <books@ejurka.com>)
Список pgsql-jdbc
> Any chance you have two man_id_seq sequences in different schemas?  The
> table insert might use one and the direct currval/nextval calls might use
> another?

I don't know how that happened but I think that's right:
select of the row after insert returned ID=2,
but somehow subsequent call to sequence's nextval returned 216.

In the docs I discovered "select lastval()" which seems to behave exactly
like @@Identity in Sybase returning the latest nextval that was obtained in
the current session by no-matter-which sequence.
That's exactly the functionality I need - much easier to use because no need
to track the name.

Can you think of any reason why using "select lastval()" would be a bad
idea?

Thanks a lot,

Andrei

----- Original Message -----
From: "Kris Jurka" <books@ejurka.com>
To: "Andrei Ilitchev" <andrei.ilitchev@oracle.com>
Cc: <pgsql-jdbc@postgresql.org>; "Marina Vatkina" <Marina.Vatkina@Sun.COM>
Sent: Thursday, October 18, 2007 1:45 PM
Subject: Re: [JDBC] Fw: postgresql experts please help


>
>
> On Thu, 18 Oct 2007, Andrei Ilitchev wrote:
>
>> I created a table with identity:
>> CREATE TABLE MAN (ID  SERIAL, NAME VARCHAR(40), PRIMARY KEY (ID))
>> then through jdbc connection inserted a row into the table,
>> then attempted to select pk value back through the same jdbc connection
>> using currval - that failed with "not yet defined in this session"
>> exception.
>>
>
> Any chance you have two man_id_seq sequences in different schemas?  The
> table insert might use one and the direct currval/nextval calls might use
> another?
>
> Kris Jurka
>


В списке pgsql-jdbc по дате отправления:

Предыдущее
От: Kris Jurka
Дата:
Сообщение: Re: AbstractJdbc2Array - another patch
Следующее
От: Kris Jurka
Дата:
Сообщение: Re: Fw: postgresql experts please help