我正在學習Flask框架。如何使用Flask與MySQL(沒有sqlalchemy - 原始的SQL查詢)?如何使用Flask與MySQL(沒有sqlalchemy - 原始的sql查詢)?
這裏是從官方教程的例子,如何配置它使用MySQL?
from sqlite3 import dbapi2 as sqlite3
from flask import Flask, request, session, g, redirect, url_for, abort, render_template, flash
# create our little application :)
app = Flask(__name__)
# Load default config and override config from an environment variable
app.config.update(dict(
DATABASE='/tmp/firma.db',
DEBUG=True,
SECRET_KEY='development key',
USERNAME='admin',
PASSWORD='default'
))
app.config.from_envvar('FIRMA_SETTINGS', silent=True)
def connect_db():
"""Connects to the specific database."""
rv = sqlite3.connect(app.config['DATABASE'])
rv.row_factory = sqlite3.Row
return rv
def init_db():
"""Creates the database tables."""
with app.app_context():
db = get_db()
with app.open_resource('firma.sql', mode='r') as f:
db.cursor().executescript(f.read())
db.commit()
def get_db():
"""Opens a new database connection if there is none yet for the
current application context.
"""
if not hasattr(g, 'sqlite_db'):
g.sqlite_db = connect_db()
return g.sqlite_db
@app.teardown_appcontext
def close_db(error):
"""Closes the database again at the end of the request."""
if hasattr(g, 'sqlite_db'):
g.sqlite_db.close()
@app.route('/')
def show_entries():
db = get_db()
cur = db.execute('select title, text from entries order by id desc')
entries = cur.fetchall()
return render_template('show_entries.html', entries=entries)
...
如何配置它使用mysql?
嘗試用這種[MySQLdb的(http://mysql-python.sourceforge.net/MySQLdb.html#mysqldb) –
你不使用sqlite3的任何原因?在沒有模型的情況下執行原始sql非常容易。 – metersk
看看這個http://www.techillumination.in/2014/01/python-web-application-development.html – iJade