Re: SQL If THEN

From: Adrian Klaver <adrian(dot)klaver(at)gmail(dot)com>
To: Filipe Brandão <fgbrandao(at)emepc-portugal(dot)org>
Cc: psycopg(at)postgresql(dot)org
Subject: Re: SQL If THEN
Date: 2012-07-11 13:50:32
Message-ID: 4FFD84A8.7040906@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: psycopg

On 07/11/2012 05:12 AM, Filipe Brandão wrote:
> Hi all.
>
> I was wondering if somenone can help me.
> I needed to do a cursor.execute of a function writen in sql.
> The function is:
> cursor.execute("""BEGIN
> IF (TG_OP = 'UPDATE') THEN
> select NEW.test;
> RETURN NEW;
> END IF;
> END;)""")
>
> I always get an error message saying ProgrammingError: syntax error at
> or near "IF"
> is there a way to execute this function inside a python script?

Have had coffee, am now ready for correct answer:( The above code
snippet will only work in a trigger function. My previous suggestion to
use DO was wrong. The only way the above is going to work is in a pgsql
function that is then attached to a trigger.

>
> Thanks!
>
>

--
Adrian Klaver
adrian(dot)klaver(at)gmail(dot)com

In response to

  • SQL If THEN at 2012-07-11 12:12:08 from Filipe Brandão

Browse psycopg by date

  From Date Subject
Next Message P. Christeas 2012-07-20 16:45:02 binary protocol, again
Previous Message Adrian Klaver 2012-07-11 13:29:06 Re: SQL If THEN