Re: [Zope-dev] limit to number of operations in a transaction?

2002-09-17 Thread Karl Anderson
"Christopher N.Deckard" <[EMAIL PROTECTED]> writes: > I have roughly 1,500 people in the database. I wrote a script to > migrate the people. Basically it does getProperty for each property > on each person folder, then creates the new person object which uses > XML. Zope apparently cannot hand

Re: [Zope-dev] limit to number of operations in a transaction?

2002-08-25 Thread Jens Vagelpohl
in your script you must commit a transaction once in a while with "get_transaction().commit()". when you use xml-rpc then every call to zope will end up being its own transaction and you will not have this problem. jens On Sunday, Aug 25, 2002, at 10:12 US/Eastern, Christopher N. Deckard wro