UPDATE/DELETE XXX WHERE CURRENT OF cursor_name

Поиск
Список
Период
Сортировка
От Golden Liu
Тема UPDATE/DELETE XXX WHERE CURRENT OF cursor_name
Дата
Msg-id 2d3034200607240120u13876cfbndca7d922faf7f94e@mail.gmail.com
обсуждение исходный текст
Ответы Re: UPDATE/DELETE XXX WHERE CURRENT OF cursor_name  (Gavin Sherry <swm@linuxworld.com.au>)
Список pgsql-hackers
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?


thanksGolden 7.24


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

Предыдущее
От: "Dave Page"
Дата:
Сообщение: Re: Adding a pgbench run to buildfarm
Следующее
От: Csaba Nagy
Дата:
Сообщение: Re: Transaction Speed and real time database