Prose\FromPDOStatement::getRowCount PHP Method

getRowCount() public method

public getRowCount ( )
    public function getRowCount()
    {
        // what are we doing?
        $log = usingLog()->startAction("how many rows were affected by the last SQL query?");
        // get the answer
        $rowCount = $this->args[0]->rowCount();
        // all done
        $log->endAction($rowCount);
        return $rowCount;
    }