mysql.connector do not give the last database state in Python(mysql.connector 不给出 Python 中的最后一个数据库状态)
问题描述
我使用 Python 中的 mysql.connector
库向数据库发送查询.但是,当数据库在初始化后发生变化时,mysql.connector
的工具会回答就像数据库从未发生过变化一样.
I use mysql.connector
library in Python to send query to database. But, when the database is changed after the initialization, the mysql.connector
’s tools answer like if the database had never change.
例如,假设我有一个极简表 students
,只有两列 id
和 name
.
As example, let’s imagine I have a minimalist table students
with just two columns id
and name
.
+----+------+
| id | name |
+----+------+
| 0 | foo |
+----+------+
在下面的代码中,查询将询问 id
0 的用户.但是,在进程内部,一些事件会从 Python 脚本外部发生并改变数据库.
In the following code, the query will ask the user with id
0. But, inside the process, some events will happened from outside the Python script and alter the database.
import mysql.connector
maindb = mysql.connector.connect(
host = "<host>",
user = "<user>",
password = "<password>",
db = "<database name>"
)
cursor = maindb.cursor()
# Here, I will send outside the python script a MySQL query to modify the name of the student from "foo" to "bar" like this:
# `UPDATE `students` SET `name` = 'bar' WHERE `students`.`id` = 0;`
cursor.execute("SELECT `id`, `name` FROM `students` WHERE `id` = 0")
result = cursor.fetchall()
print(result)
然后我得到这个答案[(0, 'foo')]
.如您所见,自从调用 maindb.cursor()
以来,Python 并不知道数据库发生了变化.所以我得到 foo
作为名称字段而不是 bar
正如预期的那样.
Then I get this answer [(0, 'foo')]
. As you see, Python is not aware the data base has change since maindb.cursor()
was called. So I get foo
as name field instead of bar
as expected.
那么当我发送查询时,如何告诉 mysql.connector
的工具从数据库中获取最后的更新?
So how to tell mysql.connector
’s tools to take the last updates from the database when I send a query?
推荐答案
数据库通过防止正在进行的事务看到其他事务所做的更改来维护数据完整性(请参阅 事务隔离级别).
The database maintains data integrity by preventing in-progress transactions from seeing changes made by other transactions (see transaction isolation levels).
您可以提交
您的连接以允许它看到新的更改:
You can commit
your connection to allow it to see new changes:
cursor = maindb.cursor()
# Here, I will send outside the python script a MySQL query to modify the name of the student from "foo" to "bar" like this:
# `UPDATE `students` SET `name` = 'bar' WHERE `students`.`id` = 0;`
# Doesn't show the update
cursor.execute("SELECT `id`, `name` FROM `students` WHERE `id` = 0")
result = cursor.fetchall()
print(result)
# Shows the update because we have committed.
maindb.commit()
cursor.execute("SELECT `id`, `name` FROM `students` WHERE `id` = 0")
result = cursor.fetchall()
print(result)
这篇关于mysql.connector 不给出 Python 中的最后一个数据库状态的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:mysql.connector 不给出 Python 中的最后一个数据库状态


- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- SQL 临时表问题 2022-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 更改自动增量起始编号? 2021-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01