版本:v1.2.4b4 官方版 大小:976.00 KB
类别:数据库类 系统:WinAll, WinXP, Win7
立即下载python2.7 mysql驱动是一款Python2.7连接MySQL需要用到的对应Mysql驱动,方便快捷链接数据库。IT猫扑小编在此为您推荐下载,欢迎使用!
环境:Python2.7.2、MySQL5.5
1.安装MySQL驱动程序。下载自动安装包,双击安装即可,非常简单。
2.连接MySQL,下面是Python示例代码。
# -*- coding: utf8 -*-
import MySQLdb
conn=MySQLdb.connect(host='localhost',
user='root',
passwd='1',
db='test')
cursor = conn.cursor()
cursor.execute ("SELECT VERSION()")
row = cursor.fetchone ()
print "server version:", row[0]
cursor.close()
conn.close()
3.输出:server version: 5.5.21
查看全部