Re: Postgres plpgsql

From: Shaun Clements <ShaunC(at)relyant(dot)co(dot)za>
To: 'Richard Huxton' <dev(at)archonet(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Postgres plpgsql
Date: 2005-03-30 14:34:25
Message-ID: 100F78F2B203444BB161BBA7077FF6131CD9B3@srldbexc003.relyant.co.za
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hi Richard

Thanks for your help.
Im stuck on this statement.
Am I missing the '' ???
<snip>
PERFORM distinct COLUMN1 FROM TABLE where COLUMN1 = ''''||
quote_literal(VARIABLE1)'' ||'' AND COLUMN2 =
''''||quote_literal(VARIABLE2)||'''';
IF NOT FOUND THEN
</snip>

The statement is failing to perform the check in the function.

Kind Regards,
Shaun Clements
-----Original Message-----
From: Richard Huxton [mailto:dev(at)archonet(dot)com]
Sent: 30 March 2005 03:56 PM
To: Shaun Clements
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: [GENERAL] Postgres plpgsql

Shaun Clements wrote:
> Im finding a problem with updating in PGPLSQL
> Can anyone find anything wrong with this code below. It appears Postgres
> isnt picking up a change in the dynamic first column. So the same column
is
> being updated.
> .
> <snip>
> EXECUTE ''UPDATE TABLENAME SET
> ''||quote_ident(variable1)||''=''||quote_literal(Variable2)||'' where
> columnname1 =''||quote_literal(variable3)||'' and columnname2 =
> ''||quote_literal(variable4)||'' and month = ''''07'''' and year =
> ''''2004'''''';
> </snip>
>
> There is clearly a need for a debugging facility.

You're not wrong there. However, you can use RAISE NOTICE - something like
RAISE NOTICE ''my vars = % / %'',variable1,variable2;

--
Richard Huxton
Archonet Ltd

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Berend Tober 2005-03-30 14:41:49 Re: Postgres mystery
Previous Message FERREIRA William (COFRAMI) 2005-03-30 14:33:29 Re: plperl doesn't release memory