oops, missed out the key change in previous commit

This commit is contained in:
sqlcoder 2009-05-07 21:24:06 +01:00 committed by Worros
parent 460102c3f5
commit 75221f0b6a

View File

@ -62,6 +62,8 @@ class fpdb_db:
self.db=MySQLdb.connect(host = host, user = user, passwd = password, db = database, use_unicode=True)
elif backend==self.PGSQL:
import psycopg2
import psycopg2.extensions
psycopg2.extensions.register_type(psycopg2.extensions.UNICODE)
# If DB connection is made over TCP, then the variables
# host, user and password are required
print "host=%s user=%s pass=%s." % (host, user, password)