错误'长'对象没有属性' fetchall'

时间:2017-07-31 10:14:22

标签: python mysql

我不知道所附代码的错误是什么,它会引发错误错误' long'对象没有属性' fetchall'。有人可以帮帮我吗。

代码:

enter image description here

2 个答案:

答案 0 :(得分:1)

您应该将conn.execute更改为x.execute

答案 1 :(得分:0)

cursor.execute()返回一个int,告诉SQL查询受影响的行数(=>选择,插入,删除,更新...),因此您无法链接.fetchall()调用,需要分两步完成:

x.execute("your query here")
rows = x.fetchall()