版本:v8.0.11 官方最新版 大小:11.73 MB
类别:其他驱动 系统:WinXP, Win7, Win8, Win10
立即下载MySQL Connector/Python是Python连接MySQL官方驱动程序,连接mysql, 就需要mysql connector,和MySQL-python封装形式不一样,mysql connector python书纯驱动,欢迎大家下载使用。猫扑网提供了支持Python 2.7/3.2/3.5/3.6几个版本,可处理大的数据包,支持连接压缩协议和SSL。
1)到Python.org上查找所用的包,我下载的是mysql.connector。
2)代码编写,import mysql.connector:
(a)连接数据库: conn = mysql.connector.connect(host='localhost', user='root',passwd='pwd',db='test')
(b)获取操作句柄:cursor = conn.cursor()
(c)执行sql:cursor.execute(sql)、cursor.executemany(sql, val)
(d)获取查询结果:alldata = cursor.fetchall()
(e)关闭连接:cursor.close()、conn.close()
查看全部