PhpRiot
Follow phpriot on Twitter
Sponsored Link
Become Zend Certified

Prepare for the ZCE exam using our quizzes (web or iPad/iPhone). More info...


When you're ready get 7.5% off your exam voucher using voucher CJQNOV23 at the Zend Store
Free iPad/iPhone App
Available on the App Store

  • PHP manual
  • Zend Framework manual
  • Smarty manual
  • PHP articles
  • PHP training

Creating a Select Object

You can create an instance of a Zend_Db_Select object using the select() method of a Zend_Db_Adapter_Abstract object.

Example 226. Example of the database adapter's select() method

<?php
$db 
Zend_Db::factory( ...options... );
$select $db->select();

Another way to create a Zend_Db_Select object is with its constructor, specifying the database adapter as an argument.

Example 227. Example of creating a new Select object

<?php
$db 
Zend_Db::factory( ...options... );
$select = new Zend_Db_Select($db);

Zend Framework