Re: cursors and for loops?

Поиск
Список
Период
Сортировка
От Richard Huxton
Тема Re: cursors and for loops?
Дата
Msg-id 200404130931.09295.dev@archonet.com
обсуждение исходный текст
Ответ на Re: cursors and for loops?  ("Dennis" <pg-user@calico-consulting.com>)
Список pgsql-sql
On Sunday 11 April 2004 19:46, Dennis wrote:
> Tom Lane writes:
> > Something like
> >
> >     LOOP
> >         FETCH ...;
> >         EXIT WHEN NOT found;
> >         ...
> >     END LOOP;
>
> Thank you! I tried finding documentation on "found" in this context and
> didn't come up with anything. Can you point me to where it is documented?

In my 7.3.x docs, at the end "Basic statements" section of the "plpgsql" 
chapter. There is only one sentence on it.

> Also, I am not getting the results I think I should be getting. Is there
> any kind of debug setting, or if not that, a way to output text (i.e.
> printf) from plpgsql?

RAISE NOTICE ''var1 = %, var2 = %'', var1, var2;

Note - you need this format, you can't mix and match expressions etc.

--  Richard Huxton Archonet Ltd


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

Предыдущее
От: Greg Stark
Дата:
Сообщение: Re: trigger/for key help
Следующее
От: Tom Lane
Дата:
Сообщение: Re: trigger/for key help