I'm interested in knowing if there is a pure object oriented database for PHP. Something similar to zodb for Python.
I'm not really looking for an object-relational mapper. So no active record clones...
I'm interested in knowing if there is a pure object oriented database for PHP. Something similar to zodb for Python.
I'm not really looking for an object-relational mapper. So no active record clones...
There are one or two. Scan for PHP here: http://en.wikipedia.org/wiki/Comparison_of_object_database_management_systems
Have you looked into document oriented databases like CouchDB? They are very much like object oriented DBs and using them in PHP is really easy: http://en.wikipedia.org/wiki/Document-oriented_database
If you want to go the NoSQL way and use a document oriented database with PHP, I would recommend MongoDB, since it already has native PHP support (if you enable the Mongo module, see http://www.php.net/manual/en/book.mongo.php). Of course it will not be the same as zodb (since it's not a pure object db), but seems to come close. Just have a look at it and see if it fits your requirements.
This does however require you to install and run a MongoDB daemon, so it might not be what you're looking for...
Maybe this will help: http://en.wikipedia.org/wiki/Comparison_of_object_database_management_systems