[ZODB-Dev] zodb/zope architecture
Steve Alexander
steve@cat-box.net
Thu, 23 May 2002 14:25:29 +0100
Kenneth McCracken wrote:
> Is it feasible to drop a different database with similar function to zodb
> into the middle of zope?
The ZODB represents an abstraction layer over any particular database
you might want.
So, you have to write a ZODB interface to the database you want to use.
How easy it is to write such an interface depends how closely the
assumptions and constraints on your database match those of the ZODB.
The ZODB already has back-ends for FileStorage (the default), the
Berkeley Database, and Oracle.
--
Steve Alexander