Пример #1
0
 /**
  * Multi array SQL fetch
  * @param $sql
  * @return unknown_type
  */
 public function get($sql, $aValues = array())
 {
     $this->sql = $sql;
     $this->signal("sql_exec", $this);
     return $this->db->GetAll($sql, $aValues);
 }
Пример #2
0
 /**
  * Multi array SQL fetch
  * @param $sql
  * @return unknown_type
  */
 public function get($sql)
 {
     self::$log[] = $sql;
     return $this->db->GetAll($sql);
 }