On Monday 17 September 2007 11:51, Ed Leafe wrote: > dabo Commit > Revision 3378 > Date: 2007-09-17 11:51:28 -0700 (Mon, 17 Sep 2007) > Author: Ed > Trac: http://svn.dabodev.com/trac/dabo/changeset/3378 > > Changed: > U trunk/dabo/biz/dBizobj.py > > Log: > Fixed a bug in the last change. > > > Diff: > Modified: trunk/dabo/biz/dBizobj.py > =================================================================== > --- trunk/dabo/biz/dBizobj.py 2007-09-17 18:07:01 UTC (rev 3377) > +++ trunk/dabo/biz/dBizobj.py 2007-09-17 18:51:28 UTC (rev 3378) > @@ -119,10 +119,10 @@ > cf = self._cursorFactory > cursorClass = self._getCursorClass(self.dCursorMixinClass, > self.dbapiCursorClass) > - crs = cf.getCursor(cursorClass).AuxCursor > + crs = cf.getCursor(cursorClass) > crs.BackendObject = cf.getBackendObject() > crs.setCursorFactory(cf.getCursor, cursorClass) > - return crs > + return crs.AuxCursor > > > def createCursor(self, key=None):
Works for me! -- John Fabiani _______________________________________________ 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]
