PL/pgsql

From: Gustavo Tadao Okida <Gtadaodev(at)netscape(dot)net>
To: pgsql-sql(at)postgresql(dot)org
Subject: PL/pgsql
Date: 2002-09-25 19:38:59
Message-ID: 3D9210D3.9030508@netscape.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hi,

I'm a new PostgreSql user but I have some experience in Oracle. So I
decided to use PL/pgsql to build my procedure (functions).

I create an database called MyDatabase and add this language into it
with: createlang plpgsql MyDatabase. After this, I wrote a function with
pgaccess :

Name: spi_novo_parametro paramters:
returns: char language: plpgsql

DECLARE
val INTEGER :=1;
BEGIN
insert into identificador_pri values(1, "OK");
RETURN "OK";
END;

It was OK when I saved it in pgaccess front end.

When I tested it, by query tab, writing select spi_novo_parametro();, it
return me this message:

Error: can't read
"PgAcVar(mw,.pgaw:22,nrecs)": no such element in array

and the stack is:

Error: can't read "PgAcVar(mw,$wn,nrecs)": no such element in array
while executing

"For {set row 0} {$row<$PgAcVar(mw,$wn,nrecs)} {incr row}{
if {[lindex $PgAcVar(mw,$wn,nrecs) $row]>$y} break }"
(procedure "Tables::canvasClick" line 5)
invoked from within
"Tables::canvasClick .pgaw:22 229 240"
(command bound to event)

Could you help me?

Thanks in advance.

Tadao

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Philip Hallstrom 2002-09-25 20:19:39 Re: SQL formatter?
Previous Message Andrew Perrin 2002-09-25 17:44:57 SQL formatter?