public affectedRows ()
Returns the number of affected rows by the lastest INSERT/UPDATE/DELETE executed in the database system
$connection->execute("DELETE FROM robots"); echo $connection->affectedRows(), ' were deleted';
public affectedRows ()
Returns the number of affected rows by the lastest INSERT/UPDATE/DELETE executed in the database system
$connection->execute("DELETE FROM robots"); echo $connection->affectedRows(), ' were deleted';
Please login to continue.