Is there a way to execute a SQL String as a query in Zend Framework?

I have a string like that:

$sql = "SELECT * FROM testTable WHERE myColumn = 5"

now I want to execute this string directly withput parsing it and creating a Zend_Db_Table_Select object from it "by hand". Or if thats possible create a Zend_Db_Table_Select object from this string, to execute that object.

How can I do that? I didn't find a solution for this in the Zend doc.

link|improve this question

57% accept rate
feedback

1 Answer

up vote 9 down vote accepted

If you're creating a Zend_DB object at the start you can create a query using that. Have a look at this entry in the manual : http://framework.zend.com/manual/en/zend.db.statement.html

$stmt = $db->query(
            'SELECT * FROM bugs WHERE reported_by = ? AND bug_status = ?',
            array('goofy', 'FIXED')
        );

Or

$sql = 'SELECT * FROM bugs WHERE reported_by = ? AND bug_status = ?';
$stmt = new Zend_Db_Statement_Mysqli($db, $sql);
link|improve this answer
does $db->query($sql, array()) work also? because I do have the parameters already qouted into the string!? And do I have to fetch the resultSet with $stmt->fetchAll() ? – elton May 28 '11 at 12:45
Thanx it worked like a charm! – elton May 28 '11 at 12:57
feedback

Your Answer

 
or
required, but never shown

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