¿MySQL permite el uso de transacciones anidadas?
mysql
transactions
nested-transactions
Alix Axel
fuente
fuente
Respuestas:
InnoDB
apoyosSAVEPOINTS
.Puede hacer lo siguiente:
CREATE TABLE t_test (id INT NOT NULL PRIMARY KEY) ENGINE=InnoDB; START TRANSACTION; INSERT INTO t_test VALUES (1); SELECT * FROM t_test; id --- 1 SAVEPOINT tran2; INSERT INTO t_test VALUES (2); SELECT * FROM t_test; id --- 1 2 ROLLBACK TO tran2; SELECT * FROM t_test; id --- 1 ROLLBACK; SELECT * FROM t_test; id ---
fuente
De la documentación de MySQL:
fuente