Re: Obtain Serial Value

Поиск
Список
Период
Сортировка
От Trewern, Ben
Тема Re: Obtain Serial Value
Дата
Msg-id 61BBC97CB6C818478B8A27E7CA36CEAB0983A4@ponxx-exs001.mowlem.group
обсуждение исходный текст
Ответ на Obtain Serial Value  ("Sistemas C.M.P." <sistemascmp@redynet4.com.ar>)
Список pgsql-odbc
Try using SELECT currval('sequenc_name');
 
From the docs:
 
Return the value most recently obtained by nextval for this sequence in the current session. (An error is reported if nextval has never been called for this sequence in this session.) Notice that because this is returning a session-local value, it gives a predictable answer whether or not other sessions have executed nextval since the current session did.
 
This should be much faster than SELECT max(... and transaction safe.
 
Regards,

Ben

-----Original Message-----
From: pgsql-odbc-owner@postgresql.org [mailto:pgsql-odbc-owner@postgresql.org] On Behalf Of Timothy Reed
Sent: 08 February 2006 14:32
To: Sistemas C.M.P.
Cc: pgsql-odbc@postgresql.org
Subject: Re: [ODBC] Obtain Serial Value

You should try SELECT MAX( <fieldname> ) FROM <tablename>; ??

On 2/8/06, Sistemas C.M.P. <sistemascmp@redynet4.com.ar > wrote:
I am using VB6+ADO+ODBC with pgSQL.
I need to obtain the value of a serial field (autogenerated) inmediatly after I do a INSERT query.  How can I do?



--
--------
Timothy Reed

tareed@gmail.com

-------------------------------------------------------------------

This email and any attachments transmitted with it are confidential (and potentially legally privileged) and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the sender and do not store, copy or disclose the content to any other person.

It is the responsibility of the recipient to ensure that opening this message and/or any of its attachments will not adversely affect its systems. No responsibility is accepted by the sender.

-------------------------------------------------------------------

 

 

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

Предыдущее
От: Timothy Reed
Дата:
Сообщение: Re: Obtain Serial Value
Следующее
От: Shelby Cain
Дата:
Сообщение: Problem using ODBC from .NET framework