Dibi\Connection::fetchSingle PHP Méthode

fetchSingle() public méthode

Executes SQL query and fetch first column - shortcut for query() & fetchSingle().
public fetchSingle ( $args ) : string
Résultat string
    public function fetchSingle($args)
    {
        $args = func_get_args();
        return $this->query($args)->fetchSingle();
    }

Usage Example

Exemple #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() . "`");
 }