Re: How to process inverted comma in "EXECUTE 'insert into xxx values(...) - Mailing list pgsql-sql

From Nemo Terry
Subject Re: How to process inverted comma in "EXECUTE 'insert into xxx values(...)
Date
Msg-id BAY19-F7C1E88EB8DBB10FEBC7D1F53D0@phx.gbl
Whole thread Raw
In response to Re: How to process inverted comma in "EXECUTE 'insert into xxx values(...)';"?  ("Rodrigo De León" <rdeleonp@gmail.com>)
Responses Re: How to process inverted comma in "EXECUTE 'insert into xxx values(...)
Re: How to process inverted comma in "EXECUTE 'insert into xxx values(...)
List pgsql-sql
But I must use it in function,so...
Do you have another solution?


>From: "Rodrigo De Le�n" <rdeleonp@gmail.com>
>To: pgsql-sql@postgresql.org
>CC: "Nemo Terry" <ntuser155@hotmail.com>
>Subject: Re: [SQL] How to process inverted comma in "EXECUTE 'insert into xxx values(...)';"?
>Date: Tue, 15 May 2007 01:25:25 -0500
>
>On 5/14/07, Nemo Terry <ntuser155@hotmail.com> wrote:
>>Look at this problem:
>>when
>>execute 'insert into lse_installations values(' || 
>>''''||obj_id||'''' || ',' || ''''||div||'''' || ',' || 
>>''''||sub||'''' || ',' || ''''||obj_type||'''' || ',' || 
>>''''||obj_name||'''' || ',' || ''''||pstcd||'''' || ',' || 
>>''''||rdcd||'''' || ',' || ''''||blkno||'''' || ',' || 
>>''''||vldunt||'''' || ','|| cenlat || ',' || cenlon || ')';
>>because obj_name from another table has value like this:S'pore High 
>>Polymer.
>>Following error raises:
>>ERROR: syntax error at or near "pore"
>>SQL state: 42601
>>Context: PL/pgSQL function "lse_installations" line 64 at execute 
>>statement
>>
>>So how to process the single inverted comma in char variable?It 
>>makes me so desperate.
>
>Why are you EXECUTEing the INSERT command? It's directly supported 
>in
>plpgsql, since it is a superset of SQL. That is, you can do:
>
>INSERT INTO lse_installations
>     VALUES (obj_id, div, sub, obj_type, obj_name, pstcd, rdcd, 
>blkno, vldunt
>           , cenlat, cenlon);
>
>Good luck.
>
>---------------------------(end of 
>broadcast)---------------------------
>TIP 6: explain analyze is your friend

_________________________________________________________________
与联机的朋友进行交流,请使用  Live Messenger; http://get.live.com/messenger/overview 



pgsql-sql by date:

Previous
From: "Rodrigo De León"
Date:
Subject: Re: How to process inverted comma in "EXECUTE 'insert into xxx values(...)';"?
Next
From: Richard Huxton
Date:
Subject: Re: How to process inverted comma in "EXECUTE 'insert into xxx values(...)