Mysql
 sql >> Database >  >> RDS >> Mysql

Rollback della transazione MySQL in caso di errore nell'aggiornamento

Ecco in PHP (non ho testato, deve adattarsi alla tua situazione):

mysql_query('START TRANSACTION;')
mysql_query("UPDATE posts SET status='approved' where post_id='id' AND status != 'approved';");
if (mysql_affected_rows()){
    mysql_query('COMMIT');
} else {
    mysql_query('ROLLBACK');
}

Oppure, se vuoi essere intelligente e farlo in SQL (usando ROW_COUNT() e IF ):

START TRANSACTION;
UPDATE posts SET status='approved' where post_id='id' AND status != 'approved';
SELECT ROW_COUNT() INTO @affected_rows;
-- .. other queries ...
IF (affected_rows > 0) THEN
    COMMIT;
ELSE
    ROLLBACK;
END IF