Author: phd
Date: 2009-12-30 18:18:05 -0700 (Wed, 30 Dec 2009)
New Revision: 4063
Modified:
SQLObject/branches/0.12/docs/News.txt
SQLObject/branches/0.12/sqlobject/firebird/firebirdconnection.py
Log:
A bugfix for FirebirdConnection merged from r4060-r4061.
Modified: SQLObject/branches/0.12/docs/News.txt
===================================================================
--- SQLObject/branches/0.12/docs/News.txt 2009-12-31 01:12:37 UTC (rev 4062)
+++ SQLObject/branches/0.12/docs/News.txt 2009-12-31 01:18:05 UTC (rev 4063)
@@ -7,6 +7,13 @@
.. _start:
+SQLObject 0.12.1
+================
+
+* Fixed a bug in PostgresConnection.
+
+* A change ported from `SQLObject 0.11.3`_.
+
SQLObject 0.12.0
================
@@ -60,6 +67,8 @@
SQLObject 0.11.3
================
+* Fixed a bug in FirebirdConnection.
+
* A change ported from `SQLObject 0.10.9`_.
SQLObject 0.11.2
Modified: SQLObject/branches/0.12/sqlobject/firebird/firebirdconnection.py
===================================================================
--- SQLObject/branches/0.12/sqlobject/firebird/firebirdconnection.py 2009-12-31 01:12:37 UTC (rev 4062)
+++ SQLObject/branches/0.12/sqlobject/firebird/firebirdconnection.py 2009-12-31 01:18:05 UTC (rev 4063)
@@ -9,14 +9,14 @@
dbName = 'firebird'
schemes = [dbName]
+ limit_re = re.compile('^\s*(select )(.*)', re.IGNORECASE)
+
def __init__(self, host, db, user='sysdba',
password='masterkey', autoCommit=1,
dialect=None, role=None, charset=None, **kw):
import kinterbasdb
self.module = kinterbasdb
- self.limit_re = re.compile('^\s*(select )(.*)', re.IGNORECASE)
-
self.host = host
self.db = db
self.user = user
|