On Jan 28, 2009, at 1:15 PM, johnf wrote: > Sorry I should have said "I don't have bizobj's available". Just > the dataset > at the moment. > > "rec1" is a dict in the code below > > biztmp = dabo.biz.dBizobj(self.conn) > tmpbiz = biztmp.getTempCursor() > tmpbiz._records = dabo.db.dDataSet(tuple(rec1)) > recordDS=tmpbiz.getDataSet() > > So I'd like to get the records in 'recordDS' into a real table.
biztmp = dabo.biz.dBizobj(self.conn) biztmp.appendDataSet(dabo.db.dDataSet(tuple(rec1)) biztmp.saveAll() -- Ed Leafe _______________________________________________ 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]
