之前在[mysql]MySQLdb中的事务处理中用autocommit和commit()以及rollback()实现了事务处理. 但后来,用同样的代码在另一个数据库中运行却失败了.找了一个下午的原因.后来发现是MyISAM存储引擎不支持事务导致的.而之前的表用的是InnoDB,支持事务. 显示当前autocommit值: show VARIABLES like '%autocommit%'; 设置autocommit为False ; 查看数据库db_test的表table_test使用的存储引擎…
Computer Science An Overview _J. Glenn Brookshear _11th Edition Before a transaction is allowed to alter the database, the alteration to be per-formed is first recorded in the log. Thus the log contains a permanent record ofeach transaction's actions…