使用innondb引擎从mysql数据库中的python脚本插入问题
我遇到一个问题,我试图使用 InnonDB 引擎将 python 脚本中的数据添加到 mysql 数据库,它与 mysql 数据库的 myisam 引擎配合良好。但 myisam 引擎的问题是它不支持外键,因此我必须在数据库中想要插入/删除记录的每个位置添加额外的代码。
有谁知道为什么 InnonDB 不能使用 python 脚本以及这个问题的可能解决方案?
I am facing a problem where I am trying to add data from a python script to mysql database with InnonDB engine, it works fine with myisam engine of the mysql database. But the problem with the myisam engine is that it doesn't support foreign keys so I'll have to add extra code each place where I want to insert/delete records in database.
Does anyone know why InnonDB doesn't work with python scripts and possible solutions for this problem ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
InnoDB 是事务性的。您需要在插入/删除/更新后调用connection.commit()。
编辑:您可以调用connection.autocommit(True)来打开自动提交。
InnoDB is transactional. You need to call connection.commit() after inserts/deletes/updates.
Edit: you can call connection.autocommit(True) to turn on autocommit.
Python DB API 默认禁用自动提交
从 google 粘贴(第一页,第二个结果)
但是
显然Python以非自动提交模式启动MySQL,请参阅:
http://www.kitebird.com/articles/pydbapi.html
从文章中:
真糟糕,不知道如何克服这一点,我不想通过猜测让你误入歧途。
我建议打开一个新问题,标题为:
如何在 MySQL python DB-API 中启用自动提交模式?
祝你好运。
Python DB API disables autocommit by default
Pasted from google (first page, 2nd result)
However
Apparently Python starts MySQL in NON-autocommit mode, see:
http://www.kitebird.com/articles/pydbapi.html
From the article:
Bummer, dunno how to override that and I don't want to lead you astray by guessing.
I would suggest opening a new question titled:
How to enable autocommit mode in MySQL python DB-API?
Good luck.