Author: phd
Date: 2005-06-20 11:07:50 +0000 (Mon, 20 Jun 2005)
New Revision: 820
Modified:
trunk/SQLObject/sqlobject/firebird/firebirdconnection.py
trunk/SQLObject/sqlobject/sqlite/sqliteconnection.py
Log:
Removed ancient kw['pool'].
Modified: trunk/SQLObject/sqlobject/firebird/firebirdconnection.py
===================================================================
--- trunk/SQLObject/sqlobject/firebird/firebirdconnection.py 2005-06-16 18:02:42 UTC (rev 819)
+++ trunk/SQLObject/sqlobject/firebird/firebirdconnection.py 2005-06-20 11:07:50 UTC (rev 820)
@@ -19,10 +19,6 @@
self.limit_re = re.compile('^\s*(select )(.*)', re.IGNORECASE)
- if not autoCommit and not kw.has_key('pool'):
- # Pooling doesn't work with transactions...
- kw['pool'] = 0
-
self.host = host
self.db = db
self.user = user
Modified: trunk/SQLObject/sqlobject/sqlite/sqliteconnection.py
===================================================================
--- trunk/SQLObject/sqlobject/sqlite/sqliteconnection.py 2005-06-16 18:02:42 UTC (rev 819)
+++ trunk/SQLObject/sqlobject/sqlite/sqliteconnection.py 2005-06-20 11:07:50 UTC (rev 820)
@@ -21,9 +21,6 @@
using_sqlite2 = False
self.module = sqlite
self.filename = filename # full path to sqlite-db-file
- if not autoCommit and not kw.has_key('pool'):
- # Pooling doesn't work with transactions...
- kw['pool'] = 0
# connection options
opts = {}
if using_sqlite2:
|