Python 查询数据库 显示字段名

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)
  

你可能感兴趣的:(Python,PHP)