Select.php
00001 <?php
00013 class Dsao_Db_Table_Select extends Zend_Db_Table_Select
00014 {
00020 public function fetchAll()
00021 {
00022 return $this->getTable()->fetchAll($this);
00023 }
00024
00030 public function fetchRow()
00031 {
00032 return $this->getTable()->fetchRow($this);
00033 }
00034 }