tags:

views:

462

answers:

4

Hello everyone! I am looking for a good ORM (i.e. Active Record) which use php extension PDO as base.Any suggestions?

+6  A: 

Doctrine or Propel.

Zed
My 2 cents: Doctrine all the way.
dcousineau
I prefer Doctrine as well, but though I would save this thread from the "religious-war" tag :)
Zed
Definitly Doctrine ; especially considering Propel might not be developped actively in the future : http://groups.google.com/group/propel-development/msg/829895b081ec7873?pli=1
Pascal MARTIN
+2  A: 

Definitely go with Doctrine.

Arms
+1  A: 

If you're using PHP 5.3 there's a PHP implementation of ActiveRecord available now (link). It's up on github as well incase you want to watch or fork it. I checked the source on github and it does use PDO at its core to execute the queries.

Steven Surowiec
+1  A: 

Another option is phpDataMapper, which is a lightweight implementation of the DataMapper pattern.

Vance Lucas