千家信息网

用python操作mysql数据库(之数据查询结果返回字典类型)

发表于:2024-11-30 作者:千家信息网编辑
千家信息网最后更新 2024年11月30日,#!/usr/bin/env python# -*- coding: utf-8 -*-import MySQLdb#建立连接conn = MySQLdb.connect(host='127.0.0.
千家信息网最后更新 2024年11月30日用python操作mysql数据库(之数据查询结果返回字典类型)
#!/usr/bin/env python# -*- coding: utf-8 -*-import MySQLdb#建立连接conn = MySQLdb.connect(host='127.0.0.1',user='root',passwd='1qaz#EDC',db='test_db')cur = conn.cursor(MySQLdb.cursors.DictCursor) #建立游标时,加上"MySQLdb.cursors.DictCursor",让数据查询结果返回字典类型#对数据进行操作sql = "select * from user" #定义查询操作的sql语句cur.execute(sql) #执行sql语句data = cur.fetchall() #读取数据#关闭数据库连接cur.close()conn.close()print data


0