mysql-flaskpython拡張機能を使用していくつかの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'
なぜこれは結果セットを返さないのですか?
また、挿入ステートメントを問題なく実行できます。
修正(回答):
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