What is the simplest ORM implementation around for PHP? I'm looking for something really simple and light (in terms of LOC, since speed it's not crucial I don't need caches and what not), preferably a single file or class package that doesn't depends on XML or other configuration files and it's easy to deploy.

Reading other similar questions Pork.dbObject (which by the way is developed by one of SO users) was the closest I could find so far, and I'm interested in knowing if there are any other ORM implementations that might be lighter than this one.

link|improve this question

feedback

8 Answers

up vote 4 down vote accepted
+50

Doctrine and Propel are good, but can't say they are "simplest". Here two alternatives - PHP Active Record , Outlet PHP ORM

Hope one of them helps

link|improve this answer
feedback

I used ADODB Active Record: http://phplens.com/lens/adodb/docs-active-record.htm, it isn't too heavy.

Then again, if you want to make a light one, why not build your own?

link|improve this answer
feedback

I've used CoughPHP in the past and been pretty happy with it's simplicity.

link|improve this answer
Not exactly what I'm looking for. – Alix Axel Aug 26 '09 at 18:41
feedback

Why not try plain vanilla PDO (or mysqli if you work with MySQL and don't like PDO)? It's not exactly a full-blown ORM, but it allows fetching query results directly into an object. And it doesn't get any more simple, lightweight and zero-configuration than that. :)

link|improve this answer
I've been butting my head trying out 8.3 million different ORMs and this turned out to easily be the best solution for me. PDO are pretty straightforward, built-in and pretty nice. I hear mysqli is a bit slower but I haven't used it personally (for that reason). +1 for PDO, pretty much the lightest you can get. – Garet Claborn Jun 20 '11 at 14:07
1  
@Garet Claborn - Actually it's the other way round, but even then the difference is negligible. – Vilx- Jun 20 '11 at 18:13
Oh nice, thanks for clearing that up ;p Good benchmark. – Garet Claborn Jun 20 '11 at 19:13
feedback

Ive just started to use Zend Framework and im pretty happy with it.

link|improve this answer
Still a lot bigger than Pork.dbObject. – Alix Axel Aug 27 '09 at 18:25
feedback

For a lightweight solution, phpDataMapper might be a good choice.

link|improve this answer
feedback

http://www.doctrine-project.org/ is a pretty good, out-of-the box solution.

link|improve this answer
3  
doctrine is not light. – Alix Axel Aug 27 '09 at 18:24
feedback

i second Doctrine... Propel is quite good too..

link|improve this answer
2  
Both of them are quite heavy. – Alix Axel Aug 28 '09 at 0:19
feedback

Your Answer

 
or
required, but never shown

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