Re: Diferencia entre functions y procedures

From: "ricardo yanguma" <ricardo(dot)yanguma(at)gmail(dot)com>
To: "ricardo yanguma" <ricardo(dot)yanguma(at)gmail(dot)com>, "Roberto Andrade Fonseca" <randradefonseca(at)gmail(dot)com>, Postgres Español <pgsql-es-ayuda(at)postgresql(dot)org>
Subject: Re: Diferencia entre functions y procedures
Date: 2006-10-26 20:13:17
Message-ID: fbe285730610261313u219ac932h73ae4440563b28d7@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

Alvaro tu me puede ayudar con ejemplo de como recorrer un cursor

hasat el momento estoy en esto.

CREATE OR REPLACE FUNCTION nr_franval(coddpto int4)

RETURNS int4 AS

$BODY$

declare

ranval refcursor;
reg int4;

begin
open ranval for select nr_codran, nr_raninf, nr_ransup from nr_rango;

(ahor me falta recorrerlo)

end;
$BODY$
LANGUAGE 'plpgsql' VOLATILE;

On 10/26/06, Alvaro Herrera <alvherre(at)commandprompt(dot)com> wrote:
>
> ricardo yanguma escribió:
> > Roberto es que veo que en la nueva version viene como un modulo de
> > procedures, me imaginao que si los tienen en diferente partes es por que
> > debe haber una diferencia?
>
> Les llaman procedures pero en realidad son funciones.
>
> --
> Alvaro Herrera
> http://www.CommandPrompt.com/
> The PostgreSQL Company - Command Prompt, Inc.
>

In response to

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message Horacio Miranda 2006-10-26 20:25:52 Re: [Fwd: Re: como almacenar una imagen en una tabla y no morir
Previous Message Edwin Quijada 2006-10-26 20:11:39 RE: Diferencia entre functions y procedures