show/hide this revision's text 2 deleted 180 characters in body

I use Zend_Db extensively, and I like it for several reasons -

  1. The Zend_Db package is self contained and can be used without the entire Zend Framework library
  2. It works with plenty of database brands, so my code simply works even when PDO is not present
  3. It creates prepared statements even without access to a PDO wrapper
  4. 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
  5. 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)
  6. The source is available in PHP, which makes it very easy to browse through it to see how things are done
show/hide this revision's text 1

I use Zend_Db extensively, and I like it for several reasons -

  1. The Zend_Db package is self contained and can be used without the entire Zend Framework library
  2. It works with plenty of database brands, so my code simply works even when PDO is not present
  3. It creates prepared statements even without access to a PDO wrapper
  4. 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
  5. 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)
  6. The source is available in PHP, which makes it very easy to browse through it to see how things are done