Re: Funciones con Pl/pgsql

From: Alvaro Herrera <alvherre(at)dcc(dot)uchile(dot)cl>
To: Leonardo Boet Sánchez <boet(at)gtm(dot)tel(dot)etecsa(dot)cu>
Cc: pgsql-es-ayuda(at)postgresql(dot)org
Subject: Re: Funciones con Pl/pgsql
Date: 2004-12-15 22:36:17
Message-ID: 20041215223617.GA22253@dcc.uchile.cl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

On Wed, Dec 15, 2004 at 05:51:08PM -0500, Leonardo Boet Sánchez wrote:
> Estoy trabajando con el pgadmin3 y entre los tipos que puede devolver
> una función es el void, ¿esto puede ser así?, aquí les mando el
> código:

Te falta el BEGIN, RETURN y END:

CREATE OR REPLACE FUNCTION test("varchar")
RETURNS void AS
'begin; insert into pais(pais) values($1); return; end;'
LANGUAGE 'plpgsql' VOLATILE;
ALTER FUNCTION test("varchar") OWNER TO postgres;

--
Alvaro Herrera (<alvherre[(at)]dcc(dot)uchile(dot)cl>)
"La victoria es para quien se atreve a estar solo"

In response to

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message Leonardo Boet Sánchez 2004-12-15 22:51:08 Funciones con Pl/pgsql
Previous Message Jaime Casanova 2004-12-15 17:32:58 ACENTOS EN POSTGRES