Changeset 4193

Show
Ignore:
Timestamp:
06/26/08 07:15:03 (2 months ago)
Author:
ed
Message:

Fixed an error when using a bizobj without a data connection.

Files:

Legend:

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

    r4182 r4193  
    7878        self._fillLinkFromParent = False 
    7979        self.exitScan = False 
     80        self.dbapiCursorClass = None 
    8081 
    8182        ########################################## 
     
    147148            raise dException.dException, errMsg 
    148149 
     150        if not self.dbapiCursorClass: 
     151            return 
    149152        cursorClass = self._getCursorClass(self.dCursorMixinClass, 
    150153                self.dbapiCursorClass)