Uwe Grauer schrieb: > > Connect your BankBizobj and your AccountBizobj with: > def createBizobjs(self): > bankBizobj = BankBizobj(self.Connection) > self.addBizobj(bankBizobj) > accountBizobj = AccountBizobj(self.Connection) > accountBizobj.LinkField = "bank_iid" # foreign key to bank table > bankBizobj.addChild(accountBizobj) # accounts are childs of bank > self.addBizobj(accountBizobj) > > The whole linking between banks and accounts is done by Dabo. > There is no need for manual event processing. >
Attention: this only works out of the box if you let Dabo build your SQL. It won't work (or only with additional code), if you set UserSQL in your bizobj. Regards Sibylle -- Dr. Sibylle Koczian _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/[email protected]
