Re: returning ref cursor - Mailing list pgsql-general

From Merlin Moncure
Subject Re: returning ref cursor
Date
Msg-id AANLkTinE9-E19rNsDk_ZCJLJzX3MY4IKoids1eM8BWWt@mail.gmail.com
Whole thread Raw
In response to returning ref cursor  (Ravi Katkar <Ravi.Katkar@infor.com>)
List 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 by date:

Previous
From: John Gage
Date:
Subject: Apache authorization using postgres
Next
From: ritas
Date:
Subject: can't install postgres 8.4 on windows 2003 server