Re: session_id

Поиск
Список
Период
Сортировка
От Richard Huxton
Тема Re: session_id
Дата
Msg-id 419B6D27.5020804@archonet.com
обсуждение исходный текст
Ответ на Re: session_id  ("Riccardo G. Facchini" <abief_ag_-postgresql@yahoo.com>)
Список pgsql-sql
Riccardo G. Facchini wrote:
>>Add a new sequence to your database:
>>   CREATE SEQUENCE my_session_id;
>>
>>Then, at the start of every session:
>>   SELECT nextval('my_session_id');
>>
>>and whenever you need the value:
>>   SELECT currval('my_session_id');

> Good idea, but it won't work for what I need.
> I'll be able to do get the nextval('my_session_id') as soon as the
> session initiates, but my problem is that I need to make all the
> subsecuent actions aware of that particular value. using
> currval('my_session_id') is not good, as any other session is likely to
> also change my_session_id to another value.

No - other sessions will see different values. Test it and see.
--   Richard Huxton  Archonet Ltd


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

Предыдущее
От: Michael Fuhr
Дата:
Сообщение: Re: session_id
Следующее
От: Thomas F.O'Connell
Дата:
Сообщение: Re: Counting Distinct Records