当前位置:天才代写 > tutorial > Python教程 > python链接mysql查询数据实例

python链接mysql查询数据实例

2017-11-03 08:00 星期五 所属: Python教程 浏览:445

利用 MySQLdb 模块毗连 MySQL

# coding=utf-8
 
#引入mysql python客户端模块
import MySQLdb
import sys
#举办数据库毗连
conn = MySQLdb.connect(host="localhost", user="root", passwd="123456", db="pythontab", charset="utf8")
cursor = conn.cursor()
#执行sql
cursor.execute("select * from test")
#列出数据
records = cursor.fetchall()
for row in records:
    for r in row:
        print r

 

    关键字:

天才代写-代写联系方式