Re: returning ref cursor

Поиск
Список
Период
Сортировка
От Merlin Moncure
Тема Re: returning ref cursor
Дата
Msg-id AANLkTinE9-E19rNsDk_ZCJLJzX3MY4IKoids1eM8BWWt@mail.gmail.com
обсуждение исходный текст
Ответ на returning ref cursor  (Ravi Katkar <Ravi.Katkar@infor.com>)
Список pgsql-general
On Mon, May 24, 2010 at 1:44 AM, Ravi Katkar <Ravi.Katkar@infor.com> wrote:
> Please let me know what’s wrong with below code
> create or replace FUNCTION test_call()
>
> RETURNS VOID
>
>    AS $procedure$
>
>    DECLARE
>
>    c_cursor  REFCURSOR;

give your cursor a name:
c_cursor  REFCURSOR default 'a_name';

this name is also how you will use the refcursor from non-plpgsql
fetches later in the transaction if you needed to (in this case you
would likely return the cursor name from the function).

merlin

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

Предыдущее
От: John Gage
Дата:
Сообщение: Apache authorization using postgres
Следующее
От: ritas
Дата:
Сообщение: can't install postgres 8.4 on windows 2003 server