Ejemplo n.º 1
0
 /**
  * Gets the count of rows
  *
  * @return boolean value / integer value
  */
 public function rows()
 {
     if ($this->PDO) {
         return !$this->Rs ? FALSE : $this->Rs->rowCount();
     }
     return !$this->Rs ? FALSE : $this->Database->rows();
 }
Ejemplo n.º 2
0
Archivo: db.php Proyecto: no2key/MuuCMS
 /**
  * Gets the count of rows
  *
  * @return boolean value / integer value
  */
 public function rows()
 {
     return !$this->Rs ? FALSE : $this->Rs->rowCount();
 }