Hello,
Question. Is not easier to use rather something more simple rather than going to Zend_DB_Table ?
Cause i would personally go better for this:
$field1 = $db->quote($field1);
$field2 = $db->quote($field2);
$sql = "SELECT * FROM `myTbl` ..... LEFT JOIN ...........................";
$result $db->fetchAll($sql);
Try this way and see what's happening.
|