dabo Commit
Revision 3325
Date: 2007-08-23 08:12:29 -0700 (Thu, 23 Aug 2007)
Author: Ed
Trac: http://svn.dabodev.com/trac/dabo/changeset/3325
Changed:
U trunk/dabo/db/dbFirebird.py
Log:
Fixed the field-matching regex to allow '$' as a legal field name character.
Diff:
Modified: trunk/dabo/db/dbFirebird.py
===================================================================
--- trunk/dabo/db/dbFirebird.py 2007-08-23 12:38:18 UTC (rev 3324)
+++ trunk/dabo/db/dbFirebird.py 2007-08-23 15:12:29 UTC (rev 3325)
@@ -19,7 +19,7 @@
def __init__(self):
dBackend.__init__(self)
self.dbModuleName = "kinterbasdb"
- self.fieldPat =
re.compile("([A-Za-z_][A-Za-z0-9-_]+)\.([A-Za-z_][A-Za-z0-9-_]+)")
+ self.fieldPat =
re.compile("([A-Za-z_][A-Za-z0-9-_$]+)\.([A-Za-z_][A-Za-z0-9-_$]+)")
import kinterbasdb
initialized = getattr(kinterbasdb, "initialized", None)
if not initialized:
_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev
Searchable Archives: http://leafe.com/archives/search/dabo-dev
This message: http://leafe.com/archives/byMID/dabo-dev/[EMAIL PROTECTED]