Changeset 3350

Show
Ignore:
Timestamp:
09/05/07 19:24:20 (1 year ago)
Author:
ed
Message:

Fixed a missing UserSQL setting in createCursor(). Also fixed a copy/paste bug in deleteAll() in which 'app' and 'cursor' were not defined.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/dabo/biz/dBizobj.py

    r3338 r3350  
    167167        crs.BackendObject = cf.getBackendObject() 
    168168        crs.sqlManager = self.SqlManager 
     169        crs.UserSQL = self.UserSQL 
    169170        crs._bizobj = self 
    170171        if self.RequeryOnLoad: 
     
    507508    def deleteAll(self, startTransaction=True): 
    508509        """ Delete all rows in the data set.""" 
     510        app = self.Application 
     511        cursor = self._CurrentCursor 
    509512        isTransactionManager = False 
    510513        if startTransaction: