2005-03-12 09:39:47 +03:00
|
|
|
|
# mogrify.py - test all possible simple type mogrifications
|
2004-10-19 07:17:12 +04:00
|
|
|
|
# -*- encoding: latin1 -*-
|
|
|
|
|
#
|
2010-02-13 01:34:53 +03:00
|
|
|
|
# Copyright (C) 2004-2010 Federico Di Gregorio <fog@debian.org>
|
2004-10-19 07:17:12 +04:00
|
|
|
|
#
|
2010-02-13 01:34:53 +03:00
|
|
|
|
# psycopg2 is free software: you can redistribute it and/or modify it
|
|
|
|
|
# under the terms of the GNU Lesser General Public License as published
|
|
|
|
|
# by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
# (at your option) any later version.
|
2004-10-19 07:17:12 +04:00
|
|
|
|
#
|
2010-02-13 01:34:53 +03:00
|
|
|
|
# psycopg2 is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
|
|
|
|
# License for more details..
|
2004-10-19 07:17:12 +04:00
|
|
|
|
|
|
|
|
|
## put in DSN your DSN string
|
|
|
|
|
|
|
|
|
|
DSN = 'dbname=test'
|
|
|
|
|
|
|
|
|
|
## don't modify anything below this line (except for experimenting)
|
|
|
|
|
|
2005-06-13 10:25:06 +04:00
|
|
|
|
import sys, psycopg2
|
2004-10-19 07:17:12 +04:00
|
|
|
|
|
|
|
|
|
if len(sys.argv) > 1:
|
|
|
|
|
DSN = sys.argv[1]
|
|
|
|
|
|
2014-03-24 21:36:33 +04:00
|
|
|
|
print "Opening connection using dsn:", DSN
|
2004-10-19 07:17:12 +04:00
|
|
|
|
|
2005-06-13 10:25:06 +04:00
|
|
|
|
conn = psycopg2.connect(DSN)
|
2004-10-19 07:17:12 +04:00
|
|
|
|
print "Encoding for this connection is", conn.encoding
|
|
|
|
|
|
|
|
|
|
curs = conn.cursor()
|
|
|
|
|
curs.execute("SELECT %(foo)s AS foo", {'foo':'bar'})
|
|
|
|
|
curs.execute("SELECT %(foo)s AS foo", {'foo':None})
|
|
|
|
|
curs.execute("SELECT %(foo)s AS foo", {'foo':True})
|
2005-03-12 09:39:47 +03:00
|
|
|
|
curs.execute("SELECT %(foo)s AS foo", {'foo':42})
|
2005-06-13 10:25:06 +04:00
|
|
|
|
curs.execute("SELECT %(foo)s AS foo", {'foo':u'yatt<EFBFBD>!'})
|
2004-10-19 07:17:12 +04:00
|
|
|
|
curs.execute("SELECT %(foo)s AS foo", {'foo':u'bar'})
|
|
|
|
|
|
|
|
|
|
print curs.mogrify("SELECT %(foo)s AS foo", {'foo':'bar'})
|
|
|
|
|
print curs.mogrify("SELECT %(foo)s AS foo", {'foo':None})
|
|
|
|
|
print curs.mogrify("SELECT %(foo)s AS foo", {'foo':True})
|
2005-03-12 09:39:47 +03:00
|
|
|
|
print curs.mogrify("SELECT %(foo)s AS foo", {'foo':42})
|
2005-06-13 10:25:06 +04:00
|
|
|
|
print curs.mogrify("SELECT %(foo)s AS foo", {'foo':u'yatt<EFBFBD>!'})
|
2004-10-19 07:17:12 +04:00
|
|
|
|
print curs.mogrify("SELECT %(foo)s AS foo", {'foo':u'bar'})
|
|
|
|
|
|
|
|
|
|
conn.rollback()
|