版本:1.1.12
大小:618 KB
环境:PC端
日期:2013- 11-4
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()