我正在尝试使用mysql-flask python扩展来执行一些sql。由于某种原因,下面的代码总是返回long。
stringify = lambda x : '"' + x + '"'
if request.method == 'POST':
sql = "select * from users where username = " + stringify(request.form['username'])
user = g.db.cursor().execute(sql).fetchall()
错误:
user = g.db.cursor().execute(sql).fetchall()
AttributeError: 'long' object has no attribute 'fetchall'
为什么不返回结果集?
另外,我可以很好地执行insert语句。
FIX(ANSWER):
def get_data(g, sql):
cursor = g.db.cursor()
cursor.execute(sql)
data = [dict((cursor.description[idx][0], value) for idx, value in enumerate(row)) for row in cursor.fetchall()]
return data
答案 0 :(得分:10)
您正尝试在Cursor.execute
的结果上调用方法,DB-API specification表示未定义(您正在使用的实现似乎返回一个整数)。相反,您希望在游标对象上调用fetchall
。类似的东西:
cursor = g.db.cursor()
cursor.execute(sql)
user = cursor.fetchall()