fetchSingle() public method

Executes SQL query and fetch first column - shortcut for query() & fetchSingle().
public fetchSingle ( $args ) : string
return string
Ejemplo n.º 1
0
 /**
  * It returns number of all rows in table.
  * @return int
  */
 public function selectNumOfAllRows()
 {
     return $this->connection->fetchSingle("SELECT COUNT(*) FROM `" . $this->table->getName() . "`");
 }