Merge pull request #625 from soulseekah/master

Use sqlite3.Row factory in Flaskr (#588)
This commit is contained in:
Kenneth Reitz 2013-01-24 20:22:02 -08:00
commit 3fdcefbcda
2 changed files with 9 additions and 2 deletions

View file

@ -42,7 +42,10 @@ def get_db():
"""
top = _app_ctx_stack.top
if not hasattr(top, 'sqlite_db'):
top.sqlite_db = sqlite3.connect(app.config['DATABASE'])
sqlite_db = sqlite3.connect(app.config['DATABASE'])
sqlite_db.row_factory = sqlite3.Row
top.sqlite_db = sqlite_db
return top.sqlite_db
@ -58,7 +61,7 @@ def close_db_connection(exception):
def show_entries():
db = get_db()
cur = db.execute('select title, text from entries order by id desc')
entries = [dict(title=row[0], text=row[1]) for row in cur.fetchall()]
entries = cur.fetchall()
return render_template('show_entries.html', entries=entries)