Python_连接MySQL

创建数据库表:


Python_连接MySQL_第1张图片
1.JPG

运行代码:

import pymysql
try:
    conn = pymysql.connect(host='localhost', user='root', passwd='123456', db='testdb', port=3306, charset='utf8')
    cur = conn.cursor() # 获取一个游标
    cur.execute('select * from a')
    data = cur.fetchone()#fetchone()行
    print(data)
    for i in cur.fetchall():
        # 注意int类型需要使用str函数转义
        print(i[0],i[1],i[2])
    cur.close()
    conn.close()
except Exception:
    print('发生异常')

执行结果:


2.JPG

你可能感兴趣的:(Python_连接MySQL)