dabo Commit
Revision 4800
Date: 2008-12-08 10:24:23 -0800 (Mon, 08 Dec 2008)
Author: Johnf
Trac: http://trac.dabodev.com/dabo/changeset/4800
Changed:
U trunk/dabo/db/dbPostgreSQL.py
Log:
to quick with the trigger. Ed pointed out the
tableNameBreak=tableName.split(".", 1) was missing.
Diff:
Modified: trunk/dabo/db/dbPostgreSQL.py
===================================================================
--- trunk/dabo/db/dbPostgreSQL.py 2008-12-08 18:11:02 UTC (rev 4799)
+++ trunk/dabo/db/dbPostgreSQL.py 2008-12-08 18:24:23 UTC (rev 4800)
@@ -88,7 +88,7 @@
def getFields(self, tableName, cursor):
"""JFCS support for 7.4 and greater
Requires that each table have a primary key"""
- #tableNameBreak=tableName.split(".", 1)
+ tableNameBreak=tableName.split(".", 1)
#localSchemaName = tableNameBreak[0]
try:
localSchemaName, localTableName = tableName.split(".",
1)
@@ -235,6 +235,7 @@
currval() will return the correct value for each session.
"""
+ tableNameBreak=tableName.split(".", 1)
try:
localSchemaName, localTableName = tableName.split(".",
1)
except ValueError:
_______________________________________________
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/[EMAIL PROTECTED]