Doctrine\DBAL\Driver\SQLSrv\SQLSrvStatement::fetchAll PHP Method

fetchAll() public method

public fetchAll ( $fetchMode = null )
    public function fetchAll($fetchMode = null)
    {
        $rows = array();
        switch ($fetchMode) {
            case PDO::FETCH_CLASS:
                while ($row = call_user_func_array(array($this, 'fetch'), func_get_args())) {
                    $rows[] = $row;
                }
                break;
            case PDO::FETCH_COLUMN:
                while ($row = $this->fetchColumn()) {
                    $rows[] = $row;
                }
                break;
            default:
                while ($row = $this->fetch($fetchMode)) {
                    $rows[] = $row;
                }
        }
        return $rows;
    }