[笔记]--在Ubuntu系统用Python连接Mysql数据库
时间:2014-05-01 10:54:23
收藏:0
阅读:474
环境:Ubuntu11.10,Python2.7,Mysql5.0.95
在Ubuntu终端输入命令安装Python的Mysql模块
sudo apt-get install python-mysqldb
就这么简单;
运行一下脚本:
#!/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()
运行以上脚本可以打印出Mysql的版本,前提是Mysql要打开远程登录;
评论(0)