Re: Prepare/Declare

Поиск
Список
Период
Сортировка
От Michael Meskes
Тема Re: Prepare/Declare
Дата
Msg-id 20070527122150.GA25883@feivel.credativ.de
обсуждение исходный текст
Ответ на Re: Prepare/Declare  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Prepare/Declare  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
On Thu, May 24, 2007 at 04:07:27PM -0400, Tom Lane wrote:
> Michael Meskes <meskes@postgresql.org> writes:
> > PREPARE p AS
> >     SELECT * FROM foo;
> > DECLARE c CURSOR for p;
> 
> > AFAIRC the standard says this group of statements are perfectly legal
> 
> I'd be interested to see where you draw that conclusion, since
> (a) PREPARE statements of that form are not in the standard, and
> (b) DECLARE CURSOR is clearly defined as taking a <query expression>.

Sorry, should have been more precise. I was talking about embedded SQL
standard. Just look for "dynamic cursors".

> You can achieve something approximating this at the protocol level,
> since you can do partial fetches from a portal created by Bind'ing
> the prepared statement.  That won't let you fetch backwards nor
> persist the cursor past end of transaction, but maybe you don't
> need those things.

I could also keep my old simultaing code for this special case, which is
probably the best way to do it.

Michael
-- 
Michael Meskes
Email: Michael at Fam-Meskes dot De, Michael at Meskes dot (De|Com|Net|Org)
ICQ: 179140304, AIM/Yahoo: michaelmeskes, Jabber: meskes@jabber.org
Go SF 49ers! Go Rhein Fire! Use Debian GNU/Linux! Use PostgreSQL!


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

Предыдущее
От: Michael Meskes
Дата:
Сообщение: Re: ecpg test runs out of disk space
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Prepare/Declare