pymysql 读取数据库没有字段

Posted 一个永

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pymysql 读取数据库没有字段相关的知识,希望对你有一定的参考价值。

import pymysql

# 打开数据库连接
db = pymysql.connect("localhost", "root", "root", "test")

# 使用cursor()方法获取操作游标
cursor = db.cursor()

# SQL 查询语句
sql = "SELECT * FROM aaa limit 2"
try:
    # 执行SQL语句
    b=cursor.execute(sql)
    #print(b)记录条数
    #print(cursor.description)#获取字段列表
    result = cursor.fetchall()
    lists=[]
    t=0
    for x in result:
     i=0
     onelist={}
     for field in cursor.description:
      onelist[field[0]]=x[i]
      i=i+1
     lists.append(onelist)
    for q in lists:
     print(q[‘id‘])
     print(q[‘data‘])
except:
   print ("Error: unable to fetch data")

# 关闭数据库连接
db.close()

























以上是关于pymysql 读取数据库没有字段的主要内容,如果未能解决你的问题,请参考以下文章

Python使用pandas & pymysql读取MySQL数据到csv文件中

pymysql怎么逐条读取

读取数据库pymysql

MySQL学习9:数据库模块pymysql的使用

Python实现MySQL数据库连接---pymysql

Ajax serialize() 方法没有读取 html 表单的所有数据字段