I use Zend_Db extensively, and I like it for several reasons -
- The Zend_Db package is self contained and can be used without the entire Zend Framework library
- It works with plenty of database brands, so my code simply works even when PDO is not present
- It creates prepared statements even without access to a PDO wrapper
- It throws exceptions instead of MySQL fatal errors, which can be caught and handled. Also, they usually provide more descriptive information and protect from more misuses
- It provides the foundation for more Zend_Db modules that are outsides the scope of PDO and which I use extensively (Zend_Db_Select, Zend_Db_Table, Zend_Db_Profiler and more)
- The source is available in PHP, which makes it very easy to browse through it to see how things are done
