In short, what is better and why ?

I currently using Zend Framework ORM but am considering move to Doctrine.

Could that someone who already moved to Doctrine (from Zend FW ORM) says the experience? Is it better, faster, more flexible, and why do I have (and anybody) move to Doctrine, or why not?

Thanks in advance.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

If you are choosing between Doctrine and Zend_Db_Table, choose based on the features that make it easier or faster to write the code.

Any ORM framework gives you benefit for development productivity, not runtime efficiency. Doctrine is no different from Zend_Db_Table in this regard.

No ORM framework can automatically make database queries faster in the general case. If you need high-performance database queries, you should learn to code SQL queries, and design your schema and indexes to support performance given the queries you need to run.

link|improve this answer
Thanks for the answer. I don't need high-performance db queries, my queries is fast enough :). I asked that only because if Doctrine is to slow, i would like to know that. – tasmaniski Jan 30 at 10:11
I would like to add that ZF provides tools such as $row->findDependentRowset($table, [$rule]); which could be deadly if put in a loop because the query is executed on each iteration. Doctrine provides similar functionality but does it with a single query which will always be faster. – Richard Ayotte Jan 30 at 15:00
feedback

Doctrine is much more flexible then Zend (ORM?). You cannot really compare those two because Zend has to focus on many aspects in their framework and Doctrine only focusses on the ORM/DBAL side of their 'framework'. From this approach Doctrine will be always one step ahead compared to Zend in ORM.

What I like from Doctrine compared to ZF is you can write code really fast and simple and it's flexibillity. Things like the Doctrine command line tool to update your schema from your entities, mapping to relations and lazy fetching, work with entities in your DQL (e.g.'FROM Entity\Donation d WHERE d.user = :user' and :user is simple a user entity object)

The AST which makes you easy to write custom TreeWalkers to maninpulate DQL and Query structure before converted to SQL, which I use a lot in my own project Pike_Grid.

link|improve this answer
Thanks for the answer. i will give it a shot to Doctrine. – tasmaniski Feb 8 at 10:15
feedback

Your Answer

 
or
required, but never shown

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