Re: PLPython function and multiple line insert - Mailing list pgsql-general

From Igor Katson
Subject Re: PLPython function and multiple line insert
Date
Msg-id 4A2A7FCD.7030201@gmail.com
Whole thread Raw
In response to PLPython function and multiple line insert  ("Andi Klapper" <andi.klapper@gmail.com>)
List pgsql-general
Andi Klapper wrote:
>
>   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()?
The statement looks incorrect from the python point of view (not just
plpython). You should quote multi-lined strings, or use an escape
character (\) like:
"""line 1
line 2"""
'''line 1
line2'''
'line 1\n\
line2'
So I would try to rewrite the statement with:
  sql = """INSERT INTO table1 (field1, field2, field3)
               VALUES ('abc', 'abc', TRUE),
                  ('def', 'def', FALSE),
                  ('ghi', 'ghi', TRUE);"""
  pypl.execute(sql)
>
> Thanks for any suggestions and help in advance,
> Andi
>


pgsql-general by date:

Previous
From: "Nykolyn, Andrew P (AS)"
Date:
Subject: Upgrade from Postgres 8.2.4 to 8.3.5
Next
From: Tom Lane
Date:
Subject: Re: Upgrade from Postgres 8.2.4 to 8.3.5