Gary Poster wrote:
Hi. ZODB does not currently work with Py2.5.

Gary
OK, thanks.
However, I was able to make it work, running this simple script, and then running the application again.

<quote>

#!/usr/bin/python

import ZODB
from ZODB import FileStorage, DB
import transaction

storage = FileStorage.FileStorage("zeo/data.fs")
db = DB(storage)
connection = db.open()
dbroot = connection.root()


transaction.commit()

connection.close()
db.close()
storage.close()

</quote>

And now it works perfectly :).
Is there any possible explanation for this?

Thanks again,

Pedro
_______________________________________________
For more information about ZODB, see the ZODB Wiki:
http://www.zope.org/Wikis/ZODB/

ZODB-Dev mailing list  -  ZODB-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zodb-dev

Reply via email to