Set returning functions and Crystal Reports - Mailing list pgsql-general

From Josué Maldonado
Subject Set returning functions and Crystal Reports
Date
Msg-id 40C9FCAE.9000506@lamundial.hn
Whole thread Raw
List pgsql-general
Hello list,

Apologize first if this is off topic.

have this function in plpgsql

DECLARE
    crow histmer%rowtype;
BEGIN
    select * into crow from histmer
    where fecha = date 'now';
    if found then
        return next crow;
    end if;
    select * into crow from histmer order by fecha desc limit 1 ;
    insert into histmer values (date 'now', crow.mercado_ne, crow.factor_adu) ;
    select * into crow from histmer
        where fecha = date 'now';

return;
END

Any idea to make Crystal Reports (10) to accept it as a data set resulting?

Thanks in advace

--
Sinceramente,
Josué Maldonado.
"Para todo mal existen dos remedios: el tiempo y el silencio." Alejandro
Dumas. Escritor francés.

pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: bytea functions
Next
From: jao@geophile.com
Date:
Subject: Trying to minimize the impact of checkpoints (resend)