Hey, normally im developing with doctrine 2.0 and CodeIgniter with PHP 5.3x Now i hav to work with php 5.2 for one site and im asking which orm should i take because Doctrine2 needs PHP 5.3x

Should i simply use doctrine 1.2 for my site? Has anyone experiences with this version or is there another good orm?

link|improve this question

feedback

2 Answers

I highly recommend DataMapper:

Source: https://bitbucket.org/wanwizard/datamapper

Forum: http://codeigniter.com/forums/viewthread/178045/

Home Page: http://stensi.com/datamapper/

The docs are great, the syntax is intuitive, and it is very powerful and easy to extend, and most importantly in your case, it only requires php 5.0

It is actively developed, and WanWizard is also very helpful and responsive on the forums.

link|improve this answer
ok thanks.. i will check this out :) – skelle Apr 11 '11 at 7:23
feedback

I recommend NotORM

http://www.notorm.com/

It's easy to use, it's use the SimpleXML object chaining concept for database relation, and use PDO for query execution

link|improve this answer
Bear in mind that multi-column FKs are not supported. Also, it looks like you can't rebuild the database from a schema, which is not great if you are distributing your application (since you'd have to manually write build sql for each db platform you plan to support). Nevertheless, looks like an interesting project. – halfer Oct 20 '11 at 5:38
feedback

Your Answer

 
or
required, but never shown

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