python中,mysql数据库中查询结果用下列语句赋值给cursor变量
cursor=con.execute('select * from test')
然后用下面语句取出所有查询结果并赋值给rows
rows=cursor.fetchall()
结果报错如下
AttributeError: 'long' object has no attribute 'fetchall'
请问cursor是什么数据类型,不能直接使用fetchall()方法么?
Helenr
慕村9548890
ibeautiful
相关分类