Ejemplo n.º 1
0
 /**
  * Returns the number of rows returned from the most recent query.
  *
  * @param  \mysqli_result|\resource  $cursor
  * @return int
  */
 public function getNumRows($cursor = null)
 {
     return $this->_db->getNumRows($cursor);
 }
 /**
  * Returns the number of rows returned from the most recent query.
  * 
  * @return int
  */
 function getNumRows($cur = null)
 {
     return $this->_db->getNumRows($cur);
 }