Python 学习之—连接mysql

下面我们使用MySQLdb 实现连接mysql 数据库并进行操作. 

#!/usr/bin/env python
# -*-coding:UTF-8-*-
import  MySQLdb
def connetMysql():
conn=MySQLdb.connect(user="admin",passwd="123456",host="XXX",db="test")
cursor = conn.cursor()
cursor.execute("select * from test;")
print "rows:cursor.rowcount() 
for row in cursor.fetchall():
print "note : ", row[0], row[1]
cursor.close() 
if __==‘__main__‘:
connectMysql()

更多资料关注:www.kootest.com ;技术交流群:182526995

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。