Thread: RETURN SET OF DATA WITH CURSOR

RETURN SET OF DATA WITH CURSOR

From
grupos
Date:
Hi !

I am making one plpgsql function and I need to return of setof data 
using a cursor.

The problem is that my function is returning only the first row and 
column of the query. This query have more than 80 columns and 1.000 
rows. Enyone have any tip to give me?

Here the fuction...

CREATE OR REPLACE FUNCTION rel_faturamento("varchar","varchar")  RETURNS refcursor AS
$BODY$
DECLAREdata_inicial ALIAS FOR $1;data_final   ALIAS FOR $2;ref refcursor;fat_cursor CURSOR FOR    SELECT * FROM SF2010
SF2   INNER JOIN SD2010 SD2 ON (SD2.D2_DOC = SF2.F2_DOC)    INNER JOIN SB1010 SB1 ON (SB1.B1_COD = SD2.D2_COD)    INNER
JOINSA1010 SA1 ON (SF2.F2_CLIENTE = SA1.A1_COD)    WHERE F2_EMISSAO >= data_inicial AND F2_EMISSAO <=
data_final   AND SF2.D_E_L_E_T_<> '*' AND sd2.d2_tes IN (SELECT                 f4_codigo FROM 
 
sf4010 WHERE d_e_l_e_t_ <> '*' AND f4_duplic = 'S' AND f4_codigo >= '500')    ORDER BY SF2.F2_EMISSAO, SF2.F2_DOC,
SF2.F2_HORA;

BEGIN

OPEN fat_cursor;
LOOP
FETCH fat_cursor INTO ref;

RETURN ref;
END LOOP;

CLOSE fat_cursor;
END;
$BODY$  LANGUAGE 'plpgsql' VOLATILE;

When I execute it, I only receive the return below:
 SELECT rel_faturamento('20051201','20051231'); rel_faturamento
----------------- 010876
(1 row)


Re: RETURN SET OF DATA WITH CURSOR

From
Richard Huxton
Date:
grupos wrote:
> Hi !
> 
> I am making one plpgsql function and I need to return of setof data 
> using a cursor.
> 
> The problem is that my function is returning only the first row and 
> column of the query. This query have more than 80 columns and 1.000 
> rows. Enyone have any tip to give me?

Yes - decide whether you are returning a set of rows or a refcursor.

Check the plpgsql docs again for how to return SETOF <rowtype> using the 
RETURN NEXT statement. Then you call your function like: SELECT * FROM 
my_func();

--   Richard Huxton  Archonet Ltd


Re: RETURN SET OF DATA WITH CURSOR

From
grupos
Date:
Hi Richard,

Thanks for your promptly answer. I don't have experience returning 
refcursor but my choice would be it.
I read the documentation but I didn't find any example with my necessity...

Could you give me a small example on the same "basis" that I want?

Thanks,

Rodrigo Carvalhaes

Richard Huxton wrote:
> grupos wrote:
>> Hi !
>>
>> I am making one plpgsql function and I need to return of setof data 
>> using a cursor.
>>
>> The problem is that my function is returning only the first row and 
>> column of the query. This query have more than 80 columns and 1.000 
>> rows. Enyone have any tip to give me?
> 
> Yes - decide whether you are returning a set of rows or a refcursor.
> 
> Check the plpgsql docs again for how to return SETOF <rowtype> using the 
> RETURN NEXT statement. Then you call your function like: SELECT * FROM 
> my_func();
> 


Re: RETURN SET OF DATA WITH CURSOR

From
Richard Huxton
Date:
grupos wrote:
> Hi Richard,
> 
> Thanks for your promptly answer. I don't have experience returning 
> refcursor but my choice would be it.>
> I read the documentation but I didn't find any example with my necessity...

http://www.postgresql.org/docs/8.1/static/plpgsql-cursors.html#PLPGSQL-CURSOR-USING

See the example in "returning cursors"
--   Richard Huxton  Archonet Ltd


Re: RETURN SET OF DATA WITH CURSOR

From
Patrick JACQUOT
Date:
grupos wrote:

> Hi Richard,
>
> Thanks for your promptly answer. I don't have experience returning 
> refcursor but my choice would be it.
> I read the documentation but I didn't find any example with my 
> necessity...
>
> Could you give me a small example on the same "basis" that I want?
>
> Thanks,
>
> Rodrigo Carvalhaes
>
> Richard Huxton wrote:
>
>> grupos wrote:
>>
>>> Hi !
>>>
>>> I am making one plpgsql function and I need to return of setof data 
>>> using a cursor.
>>>
>>> The problem is that my function is returning only the first row and 
>>> column of the query. This query have more than 80 columns and 1.000 
>>> rows. Enyone have any tip to give me?
>>
>>
>> Yes - decide whether you are returning a set of rows or a refcursor.
>>
>> Check the plpgsql docs again for how to return SETOF <rowtype> using 
>> the RETURN NEXT statement. Then you call your function like: SELECT * 
>> FROM my_func();
>>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 5: don't forget to increase your free space map settings
>
There is a standard way :

Select * from memberstatus A where not exists   (select * from emberstatus B where B.member_id=A.member_id and  
B.status_date >A.status_date)