一、安装
首先要下载相应的python mysql包。
可以到 https://pypi.python.org/pypi/MySQL-python/1.2.5 这个链接下下载,
对于windows系统,会有exe安装包,安装后,会在 Python27\Lib\site-packages 目录下生成mysql的包
二、代码编写(更新操作)
给一个最简单更新例子
import MySQLdb
try:
conn = MySQLdb.connect(host=‘127.0.0.1‘,user=‘root‘,passwd=‘‘,db=‘dpms‘,port=3306)
cur=conn.cursor()
cur.execute(‘delete from test‘)
conn.commit()
cur.close()
conn.close()
except MySQLdb.Error,e:
print e.args[1]
一定先要导入MySQLdb包。注意,如果出错,会打印错误提示。注意需要调用commit方法。
时间: 2024-10-11 03:29:39