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

MySQLdb autocommit

时间:2015-06-18 19:42:54      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

MySQLdb 中 autocommit 默认是关闭的,下面是例子。

 

import MySQLdb


conn = MySQLdb.connect(host=‘127.0.0.1‘,user=‘root‘,passwd=‘131417‘,db=‘studio‘);
cursor = conn.cursor();
cursor.execute(‘select @@autocommit‘);

data = cursor.fetchone();
print data;

cursor.close();
conn.close();

 

技术分享

 

 

返回值为 0 ;这个也一定成度上左证了,为什么一定要调用conn.commit()方法。

MySQLdb autocommit

标签:

原文地址:http://www.cnblogs.com/JiangLe/p/4586684.html

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