commit-gnue
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnue] r7016 - in trunk/gnue-common/src/datasources/drivers: ldap odbc/w


From: btami
Subject: [gnue] r7016 - in trunk/gnue-common/src/datasources/drivers: ldap odbc/wodbc special/static special/unbound
Date: Sat, 12 Feb 2005 06:11:45 -0600 (CST)

Author: btami
Date: 2005-02-12 06:11:44 -0600 (Sat, 12 Feb 2005)
New Revision: 7016

Modified:
   trunk/gnue-common/src/datasources/drivers/ldap/Driver.py
   trunk/gnue-common/src/datasources/drivers/odbc/wodbc/RecordSet.py
   trunk/gnue-common/src/datasources/drivers/special/static/RecordSet.py
   trunk/gnue-common/src/datasources/drivers/special/unbound/Driver.py
Log:
added missing recordNumber named parameters to _postCanges()

Modified: trunk/gnue-common/src/datasources/drivers/ldap/Driver.py
===================================================================
--- trunk/gnue-common/src/datasources/drivers/ldap/Driver.py    2005-02-12 
10:59:01 UTC (rev 7015)
+++ trunk/gnue-common/src/datasources/drivers/ldap/Driver.py    2005-02-12 
12:11:44 UTC (rev 7016)
@@ -192,7 +192,7 @@
         return ""
     
     
-  def _postChanges(self):
+  def _postChanges(self, recordNumber=None):
     
     update_dict={}
     dataCon=self._parent._dataObject._dataConnection

Modified: trunk/gnue-common/src/datasources/drivers/odbc/wodbc/RecordSet.py
===================================================================
--- trunk/gnue-common/src/datasources/drivers/odbc/wodbc/RecordSet.py   
2005-02-12 10:59:01 UTC (rev 7015)
+++ trunk/gnue-common/src/datasources/drivers/odbc/wodbc/RecordSet.py   
2005-02-12 12:11:44 UTC (rev 7016)
@@ -50,7 +50,7 @@
 
 
 class ODBC_RecordSet(GDataObjects.RecordSet):
-  def _postChanges(self):
+  def _postChanges(self, recordNumber=None):
     if not self.isPending(): return
     if self._deleteFlag:
       statement = self._buildDeleteStatement()

Modified: trunk/gnue-common/src/datasources/drivers/special/static/RecordSet.py
===================================================================
--- trunk/gnue-common/src/datasources/drivers/special/static/RecordSet.py       
2005-02-12 10:59:01 UTC (rev 7015)
+++ trunk/gnue-common/src/datasources/drivers/special/static/RecordSet.py       
2005-02-12 12:11:44 UTC (rev 7016)
@@ -40,7 +40,7 @@
     return 0
 
   # Post any changes to database
-  def _postChanges(self): 
+  def _postChanges(self, recordNumber=None): 
     return 1
 
   

Modified: trunk/gnue-common/src/datasources/drivers/special/unbound/Driver.py
===================================================================
--- trunk/gnue-common/src/datasources/drivers/special/unbound/Driver.py 
2005-02-12 10:59:01 UTC (rev 7015)
+++ trunk/gnue-common/src/datasources/drivers/special/unbound/Driver.py 
2005-02-12 12:11:44 UTC (rev 7016)
@@ -110,7 +110,7 @@
     return 0
 
   # Post any changes to database
-  def _postChanges(self): 
+  def _postChanges(self, recordNumber=None): 
     return 1
 
 





reply via email to

[Prev in Thread] Current Thread [Next in Thread]