Author: phd
Date: 2005-02-03 12:13:26 +0000 (Thu, 03 Feb 2005)
New Revision: 568
Modified:
home/phd/SQLObject/inheritance/sqlobject/postgres/pgconnection.py
Log:
Merged binary support from the trunk.
Modified: home/phd/SQLObject/inheritance/sqlobject/postgres/pgconnection.py
===================================================================
--- home/phd/SQLObject/inheritance/sqlobject/postgres/pgconnection.py 2005-02-03 12:06:16 UTC (rev 567)
+++ home/phd/SQLObject/inheritance/sqlobject/postgres/pgconnection.py 2005-02-03 12:13:26 UTC (rev 568)
@@ -29,6 +29,10 @@
registerConverter(type(psycopg.Binary('')),
PsycoBinaryConverter)
+ self.user = user
+ self.host = host
+ self.db = db
+ self.password = passwd
if dsn is None:
dsn = []
if db:
|