Re: [Zope] manipulating zodb from independent database connection

2007-04-13 Thread Tim Nash
Thanks Paul and Stefan, I will look into learning ZEO. I wish somebody would write a new book on the latest zope releases. I think Zope is ready for a resurge in interest. Maybe it already is happening. Grok...eggificationREST + AJAX architectures.the growing interest in web services (ju

Re: [Zope] manipulating zodb from independent database connection

2007-04-11 Thread Stefan H. Holek
On 11. Apr 2007, at 07:19, Tim Nash wrote: I'm using zope 2.5 (matches a book I like) and doing like so: This is a *very* old release (5 years?). >>> from ZODB import FileStorage, DB storage = FileStorage.FileStorage('Data.fs') db = DB(storage) connection = db.open() root = connection.root

Re: [Zope] manipulating zodb from independent database connection

2007-04-10 Thread Paul Winkler
On Tue, Apr 10, 2007 at 10:19:43PM -0700, Tim Nash wrote: > Does anybody have a script available that shows how to insert objects > into the ZODB root['Application'] from a non-zope process outside the > Zope application? Everytime I try to read root['Application'] I get a > page template error. >