[Zope3-Users] Re: mysql connection

2007-11-14 Thread Christian Klinger
Hi Roman, it depends on what you are trying to do: When you want a zope database adapter for mysql: look here http://svn.zope.org/mysqldbda/ If you want ORM than try zalchemy. http://pypi.python.org/pypi/z3c.zalchemy/0.2.1 If you need a kind of SQL-Expression than take a look at

[Zope3-Users] security policy - help

2007-11-14 Thread catonano
Hello zopers, I'm following the Zope Book example to create custom components. I created a shelf component and a book component and I let you the guess about the containment relationship ;-) In the web admin interface I see my components, I create them and browse them, I see the books put

Re: [Zope3-Users] Re: mysql connection

2007-11-14 Thread Roman Budzianowski
On Nov 14, 2007, at 12:01 AM, Christian Klinger wrote: Hi Roman, it depends on what you are trying to do: When you want a zope database adapter for mysql: look here http://svn.zope.org/mysqldbda/ Yes. Maybe it's a question about zopeproject. I added mysqldbda dependency to setup.py and

[Zope3-Users] (solved?) Large mappings or sequences in ZODB eat all the memory

2007-11-14 Thread Christophe Combelles
Christophe Combelles a écrit : Hello, What should I do to have a data structure which is memory scalable? Consider the following large btree: $ ./debugzope from BTrees.OOBTree import OOBTree root['btree']=OOBTree() for i in xrange(70): ... root['btree'][i] =

Re: [Zope3-Users] security policy - help

2007-11-14 Thread catonano
At 13.21 14/11/2007, catonano wrote: Hello zopers, I'm following the Zope Book example to create custom components. I created a shelf component and a book component and I let you the guess about the containment relationship ;-) In the web admin interface I see my components, I create them

Re: [Zope3-Users] (solved?) Large mappings or sequences in ZODB eat all the memory

2007-11-14 Thread Fred Drake
On Nov 14, 2007 1:40 PM, Christophe Combelles [EMAIL PROTECTED] wrote: That's my understanding, however that does not really explain why looping over non-persistent objects in a btree should absolutely raise everything in the memory. When using non-persistent objects, the records holding the

[Zope3-Users] Re: mysql connection

2007-11-14 Thread Christian Klinger
Roman Budzianowski schrieb: On Nov 14, 2007, at 12:01 AM, Christian Klinger wrote: Hi Roman, it depends on what you are trying to do: When you want a zope database adapter for mysql: look here http://svn.zope.org/mysqldbda/ Yes. Maybe it's a question about zopeproject. I added mysqldbda