您的位置:极速下载站 → 电脑软件 → 教育教学 → 编程开发 → Python连接MySQL数据库
MySQL Connector/Python 是由Python语言开发的驱动程序,专门用于Python连接MySQL数据库,最火软件小编为您提供了支持Python 2.7/3.2/3.3三个版本,可处理大的数据包,支持连接压缩协议和SSL
步骤如下:
1)到Python.org上查找所用的包,我下载的是mysql.connector。
2)代码编写,import mysql.connector:
主要分为5个步骤:
(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()
相关搜索:MySql