[笔记]--在Ubuntu系统用Python连接Mysql数据库

时间:2014-05-01 10:54:23   收藏:0   阅读:474

环境:Ubuntu11.10,Python2.7,Mysql5.0.95

在Ubuntu终端输入命令安装Python的Mysql模块

mamicode.com,码迷
sudo apt-get install python-mysqldb
mamicode.com,码迷

就这么简单;

运行一下脚本:

mamicode.com,码迷
#!/usr/bin/python
#-*-coding=utf-8#
#
import MySQLdb

cn = MySQLdb.Connection(host="192.168.88.124",user="root",passwd="ss")
cur = cn.cursor()
cur.execute("select version()")
vers = cur.fetchall()
print vers[0][0]

cur.close()
cn.close()
mamicode.com,码迷

 

运行以上脚本可以打印出Mysql的版本,前提是Mysql要打开远程登录;

[笔记]--在Ubuntu系统用Python连接Mysql数据库,码迷,mamicode.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!