Zend DB MYSQL Wrapper

Posted by Vincent on Stack Overflow See other posts from Stack Overflow or by Vincent
Published on 2010-06-05T18:08:45Z Indexed on 2010/06/05 18:12 UTC
Read the original article Hit count: 465

Filed under:
|
|
|

All,

I have a PHP application written in Zend Framework with MVC style. I plan to use Zend_DB to connect to the MySQL database and process queries. I am looking for a wrapper class which makes it easy to use Zend_DB class. This wrapper class will have a constructor that connects to the Mysql db using Zend_DB. It will also have a method to return a singleton instance for each and every db connection made.

Something like:

$pptDB = PPTDB::getInstance();
$pptDB->setFetchMode(PPTDB::FETCH_OBJ);
$result = $pptDB->fetchRow('SELECT * FROM bugs WHERE bug_id = 2');
echo $result->bug_description;

Where class PPTDB extends Zend_DB

Is this something feasible to have? If not, how ls would you use Zend_DB in a major application?

Thanks,

© Stack Overflow or respective owner

Related posts about mvc

Related posts about zend-framework