python中MySQLdb模块的用法

MySQLdb是用于python连接mysql数据库的接口

1.导入MySQLdb模块:

import MySQLdb

2.打开mysql数据库连接:

conn=MySQLdb.connect(host='localhost',user='root',passwd='password',port=3306,charset='utf-8')

3.使用cursor()方法获取操作游标

cur=mysqlcon.cursor()

4.使用execute()方法执行sql

cur.execute(sql)      sql可以是增删改查任意语句

5.MySQLdb自动提交

MySQLdb默认是关闭自动提交的,比如上面的sql语句为insert时,脚本执行成功,数据也不会成功插入mysql库中。

没有提交操作,命令不会在服务器上执行,需要开启自动提交才能保证execute成功

conn.autocommit(True)


你可能感兴趣的:(Python,Mysql)