From: | "Jaime Casanova" <systemguards(at)gmail(dot)com> |
---|---|
To: | "Alexander Quilca" <alquilca(at)hotmail(dot)com> |
Cc: | pgsql-es-ayuda(at)postgresql(dot)org |
Subject: | Re: Retornar Conjunto de Registros |
Date: | 2006-09-05 00:51:37 |
Message-ID: | c2d9e70e0609041751k23d92690t30e0c2c9bee44c85@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-es-ayuda |
On 9/4/06, Alexander Quilca <alquilca(at)hotmail(dot)com> wrote:
> Srs.
>
> Llevo algo de tiempo tratando de retornar un conjunto de registros(una o
> varias tablas) a través de una función pero no me funciona, estoy migrando
> los procedimientos almacenados que tenia en sql server 2000, donde si podia
> retornar un conjunto de registros, pero en postgresql no velo la forma de
> hacerlo.
>
> --create or replace function mostrar_cabnec()
> --returns record as
> --$$
> --select * into from "public"."CAB_NEC"
> --$$language sql
>
> esta es la funcion que estoy definiendo y que deberia retornar toda la data
no. no deberia porque la estas haciendo mal.
create or replace function mostrar_cabnec()
returns SETOF "public"."CAB_NEC" as $$
select * from "public"."CAB_NEC"
$$ language 'sql';
--
Atentamente,
Jaime Casanova
"Programming today is a race between software engineers striving to
build bigger and better idiot-proof programs and the universe trying
to produce bigger and better idiots.
So far, the universe is winning."
Richard Cook
From | Date | Subject | |
---|---|---|---|
Next Message | Mauricio Zea (Gmail) | 2006-09-05 01:21:04 | Consulta especial - OpenBravo |
Previous Message | Raul Caso | 2006-09-04 23:49:25 | Re: Retornar Conjunto de Registros |