oops, missed out the key change in previous commit

This commit is contained in:
sqlcoder 2009-05-07 21:24:06 +01:00
parent 9fe2fc902d
commit 4ffc028bbc

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)