I\'m using Postgres 9 and Python 2.7.2 along with psycopg2 and am trying to insert an array of string values with properly escaped quotation marks. Sample:
m
You have to let psycopg do parameters binding for you: don't try to quote them yourself.
Psycopg automatically converts a python list of strings into a postgres array. Check http://initd.org/psycopg/docs/usage.html