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...

link|improve this question

66% accept rate
feedback

4 Answers

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...

link|improve this answer
feedback

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

link|improve this answer
feedback

There are one or two. Scan for PHP here: http://en.wikipedia.org/wiki/Comparison_of_object_database_management_systems

link|improve this answer
I've already checked there, but none of the ones listed are similar to zodb...I'm hoping there's something someone may have heard of that hasn't made it to that page yet (some of the information there is outdated). – Omega Apr 13 '10 at 15:58
Yes, the PHP options look like monsters ;) – zaf Apr 13 '10 at 16:18
Well, certainly not as intuitive as zodb. And I'm inclined to consider switching over to zope. I'm just not as comfortable and familiar with it as I am with PHP! – Omega Apr 13 '10 at 18:20
Well, if that's what you want and don't want to write something yourself then zope it is for you. I've used zope and friends in the past and was fun while it lasted. – zaf Apr 13 '10 at 19:24
Lasted? What came after? – Omega Apr 13 '10 at 22:58
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.