Search Postgresql Archives

PLPython function and multiple line insert

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi everyone,

I hope, I am on the right list. If not my apology.


I'd like to insert multiple lines as following with PLPython:

SQL statement:
INSET INTO table1 (field1, field2, field3)
	VALES ('abc', 'abc', TRUE),
	      ('def', 'def', FALSE),
              ('ghi', 'ghi', TRUE);

Here the proposed function:

CREATE OR REPLACE FUNCTION insert_rows()
RETURNS boolean AS
$$
.
.
.
  sql = "("INSERT INTO table1 (field1, field2, field3)
		       VALUES ('abc', 'abc', TRUE),
			      ('def', 'def', FALSE),
			      ('ghi', 'ghi', TRUE");"
  pypl.execute(sql)
.
.
$$
LANGUAGE 'plpythonu' VOLATILE

I ran into trouble with quoting this SQL statement in PLPython (PostgreSQL 8.3.7). Any ideas/suggestions how to quote it either with pypl.execute() or pypl.plan()?

Thanks for any suggestions and help in advance,
Andi

--
Sent via pgsql-general mailing list (pgsql-general@xxxxxxxxxxxxxx)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Postgresql Jobs]     [Postgresql Admin]     [Postgresql Performance]     [Linux Clusters]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]
  Powered by Linux