Prose\FromPDOStatement::fetchAll PHP Method

fetchAll() public method

public fetchAll ( )
    public function fetchAll()
    {
        // what are we doing?
        $log = usingLog()->startAction("fetch all rows from the PDO query result");
        try {
            $rows = $this->args[0]->fetchAll();
            // all done
            $log->endAction($rows);
            return $rows;
        } catch (Exception $e) {
            throw new E5xx_ActionFailed(__METHOD__, $e->getMessage());
        }
    }