Re: Parametros en Funciones

From: Sebastián Villalba <sebastian(at)fcm(dot)unc(dot)edu(dot)ar>
To: Jorge Martinez <jlm4303(at)yahoo(dot)com(dot)ar>,pgsql-es-ayuda(at)postgresql(dot)org
Subject: Re: Parametros en Funciones
Date: 2006-06-28 13:13:07
Message-ID: 20060628131211.M76901@fcm.unc.edu.ar
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

Hola Jorge...

On Wed, 28 Jun 2006 09:16:18 -0300 (ART), Jorge Martinez wrote
> Hola soy nuevo, y estoy haciendo mis primeros pasos en postgresql
> 8.1. y PgAdmin III 1.4.2 en Windows, al respecto los consulto por
> el siguiente error:
>
> ERROR: syntax error at or near "$1" en el carácter 21
> QUERY: copy registem from $1 delimiters '|'
> CONTEXT: SQL statement in PL/PgSQL function "tomodat" near line 5
>
> Cuando ejecuto la siguiente funcion, en el editor SQL de PgAdmin.... :
>
> CREATE OR REPLACE FUNCTION tomodat("char")

No pongas el parámetro entre comillas. Probá con:

CREATE OR REPLACE FUNCTION tomodat(char) ...

Saludos...
-
-------------------------------------------
Sebastián Villalba
sebastian(at)fcm(dot)unc(dot)edu(dot)ar
-------------------------------------------

In response to

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message Fernando Aguada 2006-06-28 13:17:32 Consulta sobre el simbolo "\\"
Previous Message Jorge Martinez 2006-06-28 12:16:18 Parametros en Funciones