-2
You are probably using tables in the format Myisam that does not support transactions.
Instead use table in format Innodb.
How to create tables in this format:
CREATE TABLE t1 (a INT, b CHAR (20), PRIMARY KEY (a)) ENGINE=InnoDB;
It is also possible to change this information in the table operation option:
vixi, it worked!!! I will have to study about Myisan and Innodb to understand the differences !!!!!!!!!!!!!!!
– Danilo Vasconcelos