From: | Daniel <daniel(dot)delaluz(at)gmail(dot)com> |
---|---|
To: | pgsql-es-ayuda(at)postgresql(dot)org |
Subject: | Re: Ayuda con Funcion y C++ |
Date: | 2006-11-17 19:20:30 |
Message-ID: | ceb7e03d0611171120q141b5e48w6741c2f152a63b30@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-es-ayuda |
CREATE OR REPLACE FUNCTION inserta_valor(int4, int4, int4, int4)
RETURNS void AS
$BODY$
BEGIN
select * from valores where canal = $1;
if not found then
if $4 ISNULL then
insert into valores values($1,$2,$3);
else
insert into valores values($1,$2,$3,$4);
end if;
end if;
END;$BODY$
LANGUAGE 'plpgsql' VOLATILE;
ALTER FUNCTION inserta_valor_dig(int4, int4, int4, int4) OWNER TO postgres;
GRANT EXECUTE ON FUNCTION inserta_valor(int4, int4, int4, int4) TO public;
GRANT EXECUTE ON FUNCTION inserta_valor(int4, int4, int4, int4) TO postgres;
y desde C++ llamo la funcion asi.
......
connection Con("dbname=scada ");
result R( T.exec("PERFORM inserta_valor(1,47,0,0,0)") );
.....
hago los mismo de psql y tambien me da el error.....
On 11/17/06, Alvaro Herrera <alvherre(at)commandprompt(dot)com> wrote:
>
> Daniel escribió:
> > La definicion es:
> > CREATE OR REPLACE FUNCTION funciona(int4, int4, int4, int4, int4)
> RETURNS
> > void AS..
> >
> > El problema es que ya use el comando PERFORM
> > funciona(parametros....,..,..,..);
> > me sigue mandando el error, esto tambien lo pobre en psql y me da el
> mismo
> > error como si no existiera el comando me da el error
> >
> > ERROR: error de sintaxis en o cerca de «PERFORM» at character 1
>
> Que tal si nos muestras la funcion completa y como la estas invocando,
> en vez de tanto mover las manos en el aire?
>
> --
> Alvaro Herrera
> http://www.CommandPrompt.com/
> The PostgreSQL Company - Command Prompt, Inc.
>
From | Date | Subject | |
---|---|---|---|
Next Message | Victor Lopez | 2006-11-17 19:34:36 | SI en postgreSQL ... NO en PHP |
Previous Message | Alvaro Herrera | 2006-11-17 18:38:38 | Re: hosting? |