I know that some users use Doctrine 2 instead of Zend_Db in Zend Framework. But I don't know why. Why is Doctrine2 better than Zend_Db and why Zend_Db is not good?

Thanks

link|improve this question

80% accept rate
feedback

3 Answers

up vote 20 down vote accepted

Out-of-the-box Zend_Db is more just an enhanced Database Abstraction Layer on top of PDO, where as Doctrine 2 is a Object Relational Mapper (which sits on top of it's own DBAL).

Doctrine 2 is much better for more complicated domain layers, because all your business logic, persistence logic, etc are separated over multiple classes, so they don't serve multiple roles. Also, because you have more classes - that are cleaner and loosely-coupled - it makes testing them much easier.

Futhermore, you'll be writing only fraction of the SQL that you be with Zend_Db, because you can manipulate your entity classes and Doctrine translates those change to the database. The generated SQL also takes advantage of transactions which gives you a decent performance gain!

Make sure when you write an Entity class, it's not just PHP representation of a database table, but a persistable business object. At first you will probably think that writing all those accessor methods and the extra domain-layer classes will be cumbersome and may sway you away from Doctrine 2, but if you stick in there you will slowly understand why is is better, particularly for larger projects. (Don't forget NetBeans/phpStorm can generate getters and setters)

I'd recommend you read up on Domain-Driven Design to get a better understanding of why Doctrine 2 is so awesome.

Don't get me wrong though, you can do clean DDD with Zend_Db but it's not there OOTB, and wouldn't be nearly as powerful and full-featured like Doctrine 2.

link|improve this answer
1  
Agreed. Zend_Db is a mess for any middle or large project. While in Doctrine you have one repository for each entity, with Zend_Db you will end up extending Zend_Db_Table, which use the Table Data Gateway pattern, and including methods like getAllAllowedUsers() with customs SQL joining several tables and resulting in a Zend_Db_Table_Row that actually doesn't has nothing with your actual business model. So you merge Zend_Db_Table with the Repository pattern. Maybe you realize that you actually need a Data Mapper, so you start creating your own implementation, reinventing the wheel. – Keyne Feb 18 at 3:47
Or even worst: Some developers create the selects on the controller itself. listAction() { $UsersTable->select()... – Keyne Feb 18 at 3:49
feedback

If you have a small project wich is bound to use a specific DBMS, you do not need ORM and Doctrine.

If you have a project wich is large and in the future might need adapters to switch from one dbms to another, than you might consider using Doctrine

As you can read in the Doctrine description:

Doctrine 2 is an object-relational mapper (ORM) for PHP 5.3.0+ that provides transparent persistence for PHP objects. It sits on top of a powerful database abstraction layer (DBAL). Object-Relational Mappers primary task is the transparent translation between (PHP) objects and relational database rows.

link|improve this answer
please define "large" :-) Thanks – ArneRie Feb 2 '11 at 13:57
Your answer implies that the primary benefit of an ORM is DBMS portability. But plain PDO - or really any DBAL - provides that. I find the real benefit of an ORM is the clean distinction between the models themselves and their persistence/hydration to/from a repository. – David Weinraub Jul 9 '11 at 17:18
feedback

Zend_DB and Doctrine uses different ways. Zend_DB works like table data gateway and row data gateway. Doctrine is object mapper.

In my experiences Zend_DB enough and fast for most common tasks. Doctrine is slow and uses more memory than Zend_DB.

link|improve this answer
In my experience it's harder to maintain a code that doesn't have a clean separation between business logic and data access layer. You tend to use Active Record alike patterns when dealing with your model. For instance, extending Zend_Db_Table_Row and Zend_Db_Table or even creating your own data mappers and repositories (Repository pattern). It's definitely for small projects and teams, I think. – Keyne Feb 18 at 3:40
feedback

Your Answer

 
or
required, but never shown

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