Database access component for the Zend Framework.
zend-framework for PHP 5 includes a database access component, referred to as Zend\Db
.
The Zend\Db
component includes features such as:
- Database connection factory class.
- Adapter for multiple brands of database, closely matching the pdo interface, and also supporting other non-PDO database interfaces such as mysqli and oci.
- Simple query builder for generic SELECT syntax.
- sql statement profiler and logger.
- Table Data Gateway and Row Data Gateway classes. Together these are similar to the popular Active Record pattern.