コード例 #1
0
 /**
  * SQL row fetch
  * @param $sql
  * @return unknown_type
  */
 public function getRow($sql, $aValues = array())
 {
     $this->sql = $sql;
     $this->signal("sql_exec", $this);
     return $this->db->GetRow($sql, $aValues);
 }
コード例 #2
0
ファイル: oodb.php プロジェクト: Jamongkad/Sunfish
 /**
  * SQL row fetch
  * @param $sql
  * @return unknown_type
  */
 public function getRow($sql)
 {
     self::$log[] = $sql;
     return $this->db->GetRow($sql);
 }