Re: [ZODB-Dev] Supporting a DataManager without Two Phase Commit

2007-05-05 Thread Christian Theune
Am Samstag, den 05.05.2007, 02:46 +0200 schrieb Andreas Jung: > > --On 4. Mai 2007 22:33:05 +0100 Laurence Rowe <[EMAIL PROTECTED]> wrote: > > Following a discussion with several of the sqlalchemy integration authors > > on #plone today we came up with the following hack to implement this: > > htt

Re: [ZODB-Dev] Implementing Storage Decorators

2007-05-05 Thread Christian Theune
Am Freitag, den 04.05.2007, 23:54 -0400 schrieb Jim Fulton: > All of the examples I mentioned can be handled very well with a > decorator model. Yup. My experience with using the proxy approach for is good as well (I worked on the BlobStorage). I'm kind of leaning towards using a proxy approach

[ZODB-Dev] copy routine: ZODB => local file system

2007-05-05 Thread Dennis Allison
Has anyone written a utility that copies out the content of a ZODB file (in my case, a Zope Data.fs) and stores it in the local file system in some rational way? Zope does not solve the problem because the backing Relational DBMS is unavailable and the ZODB and the RDBMS are closely tied.

[ZODB-Dev] Heads up on some clean ups

2007-05-05 Thread Jim Fulton
I'm getting rid of the DB and Connection synch and mvcc options in open(). These were a bit silly (be stupid options) and complicated the code. AFAICT, they are only used by tests and I've re-factored the the relevant tests to not use them. In the course of doing this, I noticed that su