From: | "A(dot) Kretschmer" <andreas(dot)kretschmer(at)schollglas(dot)com> |
---|---|
To: | pgsql-sql(at)postgresql(dot)org |
Subject: | Re: question on plpgsql block |
Date: | 2007-04-13 06:28:39 |
Message-ID: | 20070413062839.GB24558@a-kretschmer.de |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-admin pgsql-sql |
am Thu, dem 12.04.2007, um 15:44:19 -0700 mailte Karthikeyan Sundaram folgendes:
> Hi Gurus,
>
> I tried a plpgsql block from the php.
>
> example
>
> a='begin
> insert into table a values (....);
> insert into table b values (....)
> insert into table c values (...)
> select into p_var ... from table where condtion
> update a set column = <new value> where condition;
> commit;
> end;';
>
> I works fine when I call this block from php, whereas, I tried to copy the
> same value from the command line prompt or PGadmin GUI utility. Then it says
> "ERROR: current transaction is aborted, commands ignored until end of
> transaction block"
>
> Why?
My guess:
PHP treat each line separately and sends line by line to the server and
adds the missing ';' if necessary.
If you send this from the GUI the server received one big command with
syntax-errors, because the missing ';' after some commands.
Andreas
--
Andreas Kretschmer
Kontakt: Heynitz: 035242/47150, D1: 0160/7141639 (mehr: -> Header)
GnuPG-ID: 0x3FFF606C, privat 0x7F4584DA http://wwwkeys.de.pgp.net
From | Date | Subject | |
---|---|---|---|
Next Message | Sorin N. Ciolofan | 2007-04-13 08:13:24 | Re: Increasing the shared memory |
Previous Message | Phillip Smith | 2007-04-13 00:50:35 | Re: [SQL] setting up a mirroring or replication database |
From | Date | Subject | |
---|---|---|---|
Next Message | Dmitry Turin | 2007-04-13 07:58:12 | We all are looped on Internet: request + transport = invariant |
Previous Message | John Summerfield | 2007-04-13 01:02:58 | Re: A long-running transaction |