Is it possible to dump a database using doctrine 2? I have read that symfony has a library which extends doctrine to do it but How could I use it in my zendframework project
Doctrine has no database-dump feature. I agree it would be nice, but it's also not the ORM's goal.
You could dump the database using
Here's an article explaining those solutions.