Re: quotes in pl/pgsql - Mailing list pgsql-sql

From Justin Clift
Subject Re: quotes in pl/pgsql
Date
Msg-id 3AA6D462.BE90DA40@bigpond.net.au
Whole thread Raw
In response to quotes in pl/pgsql  (Najm Hashmi <najm@mondo-live.com>)
List pgsql-sql
Hi Najm,

Is this what you mean?

CREATE FUNCTION foobar(int4) returns int4 as 'DECLARE
 textbuf   varchar(120);

BEGIN
   textbuf := ''Example Text '';
   insert into sometable (something) values (textbuf);
   RETURN 0; END;'
LANGUAGE 'plpgsql';


Najm Hashmi wrote:
> 
> Hi all, I just want to know how to put quotes around a string. Is there a
> function to do so?
> If not how can I escape  a single quote.
> Thank you in advance.
> 
>   ------------------------------------------------------------------------
> 
> ---------------------------(end of broadcast)---------------------------
> TIP 1: subscribe and unsubscribe commands go to majordomo@postgresql.org


pgsql-sql by date:

Previous
From: Tom Lane
Date:
Subject: Re: A query that doesn't work on 7.1
Next
From: Roberto Mello
Date:
Subject: Re: quotes in pl/pgsql