码迷,mamicode.com
首页 > 数据库 > 详细

[mysql] Some non-transactional changed tables couldn't be rolled back

时间:2015-05-28 19:53:07      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:

使用peewee的事务时,碰到一个郁闷的问题,事务似乎无效!

于是简化了下模型,写了简单的测试代码,发现问题,如题所示。

找到解答:

https://github.com/etianen/django-reversion/issues/362

https://dev.mysql.com/doc/refman/5.0/en/nontransactional-tables.html

原因就是数据库表的引擎需要设置为InnoDB才能支持事物,解决方法如下:

http://dev.mysql.com/doc/refman/5.6/en/converting-tables-to-innodb.html

即,将需要支持事物的表的引擎设置为InnoDB,sql如下:

alter table my_table engine=InnoDB;

 

[mysql] Some non-transactional changed tables couldn't be rolled back

标签:

原文地址:http://www.cnblogs.com/Tommy-Yu/p/4536732.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!