[sqlalchemy] Re: Prepared Statements in Postgresql

2010-01-15 Thread mozillalives
Thanks for your quick response Michael. To answer your question, this is how I was issuing the queries conn.execute(PREPARE insert_statement(text) AS ...) conn.execute(EXECUTE insert_statement('%s') % val) And I'm sorry if it seemed that I was attacking sqlalchemy, I just wasn't sure what it

Re: [sqlalchemy] Re: Prepared Statements in Postgresql

2010-01-15 Thread Michael Bayer
mozillalives wrote: Thanks for your quick response Michael. To answer your question, this is how I was issuing the queries conn.execute(PREPARE insert_statement(text) AS ...) conn.execute(EXECUTE insert_statement('%s') % val) And I'm sorry if it seemed that I was attacking sqlalchemy, I