vote up 1 vote down star

how can i easily implement queries in zend framework ?

flag
Query what? Web service, database (mssql,mysql,sqlite,...)? – Unkwntech Dec 23 '08 at 4:36

2 Answers

vote up 2 vote down

Check this document:

Zend Framework Database Quick Start (PDF)

link|flag
vote up 0 vote down

You can use the Zend Db Adapter object like so:

$sql = 'SELECT * FROM bugs WHERE bug_id = ?';

$result = $db->fetchAll($sql, 2);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.