MySQL is not ACID compliant
MySQL 5.5.6 is not ACID compliant, here is an example: mysql> drop table if exists mytable1; Query OK, 0 rows affected, 1 warning (0.00 sec) mysql> begin; Query OK, 0 rows affected (0.00 sec) mysql> create table mytable1 (idontfeellucky int) ; Query OK, 0 rows affected (0.44 sec) mysql> show create table mytable1; +——-+—————————————————————————————-+ | [...]
Read the rest of this entry »
