RE: Retornar un intereger y un cursor en una misma funcion

From: Fernando Siguenza <fsigu(at)hotmail(dot)com>
To: <listas_quijada(at)hotmail(dot)com>, Foro Postgres <pgsql-es-ayuda(at)postgresql(dot)org>
Subject: RE: Retornar un intereger y un cursor en una misma funcion
Date: 2008-12-02 16:48:07
Message-ID: COL111-W623B8032FB27D0E9A79577A1000@phx.gbl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda


Gracias por responder, pero si pongo como variable out a un numeric, y a un cursor, que tipo debo poner en el retorn de las funcion

tengo algo como esto
CREATE OR REPLACE FUNCTION prueba1(vAgeCod varchar,vCueCod varchar,vFecIni date,vFecFin date,out saldo numeric,out cCuentas refcursor) RETURNS void AS $$

DECLARE
rSaldo record
BEGIN
select into rSaldo sum(asideb-asihab)as SaldoAnterir from asientos where asicuecod=vCueCod and asiFec<vFecIni
saldo:=rSaldo.SaldoAnterior;

open cCuentas for
select asicuecod,asideb,asihab,0.000 as saldo from asientos where asicuecod=vCueCod and asiFec>=vFecIni and asiFec<=vFecFin;
RETURN;
END;
$$
LANGUAGE 'plpgsql';

Que deberia corregir para que no me de error esta funcion???

> From: listas_quijada(at)hotmail(dot)com
> To: fsigu(at)hotmail(dot)com; pgsql-es-ayuda(at)postgresql(dot)org
> Subject: RE: [pgsql-es-ayuda] Retornar un intereger y un cursor en una misma funcion
> Date: Tue, 2 Dec 2008 16:36:12 +0000
>
>
> Parametros out
>
> *-------------------------------------------------------*
> *-Edwin Quijada
> *-Developer DataBase
> *-JQ Microsistemas
> *-809-849-8087
>
> * " Si deseas lograr cosas excepcionales debes de hacer cosas fuera de lo comun"
> *-------------------------------------------------------*
>
>
>
>
> From: fsigu(at)hotmail(dot)com
> To: pgsql-es-ayuda(at)postgresql(dot)org
> Subject: [pgsql-es-ayuda] Retornar un intereger y un cursor en una misma funcion
> Date: Tue, 2 Dec 2008 13:44:58 +0000
>
>
>
>
>
>
> .ExternalClass .EC_hmmessage P
> {padding:0px;}
> .ExternalClass body.EC_hmmessage
> {font-size:10pt;font-family:Verdana;}
>
>
>
> Amigos, estoy con una necesidad hay como retornar un integer y un cursor en una misma funcion????
>
> Como podria hacer esto??
>
>
>
> Gracias por su ayuda
>
>
>
> Get 5 GB of storage with Windows Live Hotmail. Sign up today.
> _________________________________________________________________
> See how Windows® connects the people, information, and fun that are part of your life
> http://clk.atdmt.com/MRT/go/119463819/direct/01/

_________________________________________________________________
See how Windows® connects the people, information, and fun that are part of your life
http://clk.atdmt.com/MRT/go/119463819/direct/01/

In response to

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message Cristian G. 2008-12-02 18:08:01 Cursores
Previous Message Edwin Quijada 2008-12-02 16:38:02 RE: query dimanica