Re: Minor systax error but not able to resolve it... - Mailing list pgsql-general

From Richard Huxton
Subject Re: Minor systax error but not able to resolve it...
Date
Msg-id 4B83C223.30909@archonet.com
Whole thread Raw
In response to Minor systax error but not able to resolve it...  (dipti shah <shahdipti1980@gmail.com>)
Responses Re: Minor systax error but not able to resolve it...  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-general
On 23/02/10 11:25, dipti shah wrote:
> Hi, could anyone please help me to sort out below error. I have spent lot of
> time but couldn't resolved it.

 > ERROR:  error from Perl function "test_create": syntax error at or near
 > "CREATE" at line 3.


> spi_exec_query("CREATE OR REPLACE FUNCTION my_tmp_func() RETURNS void AS
> $cmd LANGUAGE sql;");

You're interpolating $cmd here but not quoting it, so you end up with:
... RETURNS void AS CREATE TABLE test-table...
whereas you want:
... RETURNS void AS 'CREATE TABLE test-table...'...

Probably best to use dollar-quoting: $TMP$ or similar, but don't forget
to escapt the $ or perl will think it's a variable.

--
   Richard Huxton
   Archonet Ltd

pgsql-general by date:

Previous
From: Thom Brown
Date:
Subject: Re: Subqueries or Joins? Problems with multiple table query
Next
From: "A. Kretschmer"
Date:
Subject: Re: Subqueries or Joins? Problems with multiple table query