Postgres::browseQueryCount PHP Method

browseQueryCount() public method

Finds the number of rows that would be returned by a query.
public browseQueryCount ( $query, $count ) : -1
$query The SQL query
$count The count query
return -1 count of rows
    function browseQueryCount($query, $count)
    {
        return $this->selectField($count, 'total');
    }
Postgres