数据库不会使用MySQL和Python自动更新 [英] Database does not update automatically with MySQL and Python

查看:169
本文介绍了数据库不会使用MySQL和Python自动更新的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在更新MySQL数据库中的行时遇到了一些麻烦.这是我要运行的代码:

I'm having some trouble updating a row in a MySQL database. Here is the code I'm trying to run:

import MySQLdb

conn=MySQLdb.connect(host="localhost", user="root", passwd="pass", db="dbname")
cursor=conn.cursor()

cursor.execute("UPDATE compinfo SET Co_num=4 WHERE ID=100")
cursor.execute("SELECT Co_num FROM compinfo WHERE ID=100")
results = cursor.fetchall()

for row in results:
    print row[0]

print "Number of rows updated: %d" % cursor.rowcount

cursor.close()
conn.close()

运行该程序时得到的输出是:

The output I get when I run this program is:

4
更新的行数:1

4
Number of rows updated: 1

它似乎正在运行,但是如果我从MySQL命令行界面(CLI)查询数据库,我发现它根本没有更新.但是,如果从CLI输入UPDATE compinfo SET Co_num=4 WHERE ID=100;,则数据库将按预期更新.

It seems like it's working but if I query the database from the MySQL command line interface (CLI) I find that it was not updated at all. However, if from the CLI I enter UPDATE compinfo SET Co_num=4 WHERE ID=100; the database is updated as expected.

我的问题是什么?我正在Windows框上运行带有MySQL 5.1.30的Python 2.5.2.

What is my problem? I'm running Python 2.5.2 with MySQL 5.1.30 on a Windows box.

推荐答案

我不确定,但是我想您正在使用INNODB表,但是尚未完成提交.我相信MySQLdb会自动启用事务.

I am not certain, but I am going to guess you are using a INNODB table, and you haven't done a commit. I believe MySQLdb enable transactions automatically.

在致电close之前先致电conn.commit().

来自FAQ:从1.2.0开始,MySQLdb默认禁用自动提交

这篇关于数据库不会使用MySQL和Python自动更新的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆