/** * Gets the results into an array * * @return boolean value / array value */ public function fetch($count = 0) { if ($this->PDO) { return !$this->Rs ? FALSE : $this->Rs->fetch(PDO::FETCH_ASSOC); } else { return !$this->Rs ? FALSE : $this->Database->fetch($count); } }
/** * Gets the results into an array * * @return boolean value / array value */ public function fetch($count = 0) { return !$this->Rs ? FALSE : $this->Rs->fetch(PDO::FETCH_ASSOC); }