Re: UPDATE/DELETE XXX WHERE CURRENT OF cursor_name

Поиск
Список
Период
Сортировка
От Gavin Sherry
Тема Re: UPDATE/DELETE XXX WHERE CURRENT OF cursor_name
Дата
Msg-id Pine.LNX.4.58.0607241909400.25562@linuxworld.com.au
обсуждение исходный текст
Ответ на UPDATE/DELETE XXX WHERE CURRENT OF cursor_name  ("Golden Liu" <goldenliu@gmail.com>)
Ответы Re: UPDATE/DELETE XXX WHERE CURRENT OF cursor_name  ("Florian G. Pflug" <fgp@phlo.org>)
Список pgsql-hackers
On Mon, 24 Jul 2006, Golden Liu wrote:

> Updateable cursors are used as follows:
>
> begin;
> declare foo cursor for select * from bar for update;
> fetch foo;
> update bar set abc='def' where current of foo;
> fetch foo;
> delete from bar where current of foo;
> commit;
>
>
> PostgreSQL doesn't support this feature now ( 8.1.4). Will PGSQL
> support it recently? Does anyone work on this?
>

No one has stepped up to do this for 8.2 so unfortunately you will most
likely not see this within the next year or so :-(.

Thanks,

Gavin

PS: sorry for not responding to your private email in time.


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

Предыдущее
От: Stefan Kaltenbrunner
Дата:
Сообщение: Re: Adding a pgbench run to buildfarm
Следующее
От: Markus Schiltknecht
Дата:
Сообщение: Re: Documenting Replication Solutions