使用innondb引擎从mysql数据库中的python脚本插入问题

发布于 2024-11-01 19:59:07 字数 195 浏览 0 评论 0原文

我遇到一个问题,我试图使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

随波逐流 2024-11-08 19:59:07

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.

哑剧 2024-11-08 19:59:07

Python DB API 默认禁用自动提交

从 google 粘贴(第一页,第二个结果)

MySQL :: MySQL 5.0 参考手册 :: 13.2.8 InnoDB ...
默认情况下,MySQL 使用自动提交为每个新连接启动会话...
dev.mysql.com/.../innodb-transaction -model.html

但是

显然Python以非自动提交模式启动MySQL,请参阅:
http://www.kitebird.com/articles/pydbapi.html

从文章中:

连接对象 commit() 方法提交当前事务中任何未完成的更改,使它们永久保留在数据库中。在 DB-API 中,连接以禁用自动提交模式开始,因此您必须在断开连接之前调用 commit(),否则更改可能会丢失。

真糟糕,不知道如何克服这一点,我不想通过猜测让你误入歧途。
我建议打开一个新问题,标题为:

如何在 MySQL python DB-API 中启用自动提交模式?

祝你好运。

Python DB API disables autocommit by default

Pasted from google (first page, 2nd result)

MySQL :: MySQL 5.0 Reference Manual :: 13.2.8 The InnoDB ...
By default, MySQL starts the session for each new connection with autocommit ...
dev.mysql.com/.../innodb-transaction-model.html

However

Apparently Python starts MySQL in NON-autocommit mode, see:
http://www.kitebird.com/articles/pydbapi.html

From the article:

The connection object commit() method commits any outstanding changes in the current transaction to make them permanent in the database. In DB-API, connections begin with autocommit mode disabled, so you must call commit() before disconnecting or changes may be lost.

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文