[Zope] Learning to use a BTreeFolder2

2008-11-25 Thread Mr SZ
Hi All, I am writing a product to manage the back end operations of users.I need to store lots of user info.My first plan was to use ZSQL but then I read about ZODB and more specifically OOBTrees and BTreeFolder2. My objective is to store user related stuff on ZODB but not litter the ZODB but

Re: [Zope] Learning to use a BTreeFolder2

2008-11-25 Thread Peter Bengtsson
OOBTrees are created as attributes on zopeish objects (e.g. BTreeFolder2). E.g. class Stuff(BTreeFolder2): meta_type ='Stuff' def __init__(self, oid): super(Stuff, self).__init__(oid) self.people = OOBTree() 2008/11/25 Mr SZ [EMAIL PROTECTED]: Hi All, I am writing a