I would like to change the fetch mode within an extended class of Zend_Db_Table_Abstract. The following does not work:
<?php
class Foo extends Zend_Db_Table_Abstract
{ยท
function bar()
{
return $this->fetchAll(Zend_Db::FETCH_NUM);
}
}
Anybody have an idea how to do it properly?? Thanks!