db = MySQLdb.connent(host=server_config["mysql_web"]["host"],port=server_config["mysql_web"]["port"],user=server_config["mysql_web"]["user"],passwd=server_config["mysql_web"]["password"],db=server_config["mysql_web"]["database"])
#设置游标 查询出来的数据才会带上字段名
db_cur = db.cursor(MySQLdb.cursors.DictCursor)
#设置游标 查询出来的数据才会带上字段名
db_cur = db.cursor(MySQLdb.cursors.DictCursor)
来源:CSDN
作者:树下水月
链接:https://blog.csdn.net/u013416034/article/details/103703356