HI, Why not use PDOStatement :: rowCount to get the number of rows affected by the last statement. This property could be populated in the _run function after the statement execution like this: $this->_rowCount = $statement->rowCount(); Regards,