Re: Reading an OUT parameter out of a function call - Mailing list pgsql-general

From Stefan Keller
Subject Re: Reading an OUT parameter out of a function call
Date
Msg-id CAFcOn2_LUWoiaj9-p7DAcAMsCcwy6L4cBsje5F6eJY_p9U0ECA@mail.gmail.com
Whole thread Raw
In response to Re: Reading an OUT parameter out of a function call  (Russell Keane <Russell.Keane@inps.co.uk>)
List pgsql-general
Thank you Keane and all.
That works for me too.

Yours, Stefan


2013/2/25 Russell Keane <Russell.Keane@inps.co.uk>:
>> > I have a simple void function:
>> >
>> > CREATE OR REPLACE FUNCTION myfn(myparam OUT int) AS $$ BEGIN
>> >    pnr := 1;
>> > END;
>> > $$ LANGUAGE plpgsql;
>> >
>> > How do I access myparam?
>> > I thought this should work with 9.1/9.2: SELECT (myfn()).myparam; Or
>> > inside another function?
>>
>> You get the above to load?
>> I get:
>> ERROR:  "pnr" is not a known variable
>> LINE 4:   pnr := 1;
>
> The following all works under 9.2:
>
> CREATE OR REPLACE FUNCTION myfn(myparam OUT int, myparam2 OUT int) AS $$ BEGIN
>         myparam := 1;
>         myparam2 := 2;
> END;
> $$ LANGUAGE plpgsql;
>
>
> select myparam from myfn();
> select myparam2 from myfn();
> select myfn();
> select * from myfn();

pgsql-general by date:

Previous
From: Adrian Klaver
Date:
Subject: Re: Use, Set Catalog and JDBC questions
Next
From: Frank Cavaliero
Date:
Subject: Re: Use, Set Catalog and JDBC questions