6

这是我的database.py

engine = create_engine('sqlite:///:memory:', echo=True)
session = scoped_session(sessionmaker(autocommit=False, autoflush=False, bind=engine))
Base = declarative_base()
Base.query = session.query_property()

def init_db():
  # import all modules here that might define models so that
  # they will be registered properly on the metadata.  Otherwise
  # you will have to import them first before calling init_db()
  import models
  Base.metadata.create_all(engine)

这是我的后端.py

from flask import Flask, session, g, request, render_template
from database import init_db, session
from models import *

app = Flask(__name__)
app.debug = True
app.config.from_object(__name__)

# Serve static file during debug 
if app.config['DEBUG']:
  from werkzeug import SharedDataMiddleware
  import os
  app.wsgi_app = SharedDataMiddleware(app.wsgi_app, {
    '/': os.path.join(os.path.dirname(__file__), 'static')
  })

@app.route('/')
def foo():
  session.add(User())
  session.commit()
  return "NOTHING HERE."

if __name__ == "__main__":
  init_db()
  app.run(port=8888)

我注意到一些奇怪的事情:

  1. 当我这样做python backend.py时,我看到表被创建了两次。执行相同的创建表语句
  2. 当我访问“/”时,即使我 100% 确定表已创建,我也会收到以下错误。为什么?

cursor.execute(statement, parameters) OperationalError: (OperationalError) no such table: users u'INSERT INTO users DEFAULT VALUES' ()

4

1 回答 1

10

当您在内存中创建 SQLite 数据库时,它只能由创建它的特定线程访问 - 更改create_engine('sqlite:///:memory:')create_engine('sqlite:////some/file/path/db.sqlite'并且您的表将存在。

至于为什么您会看到创建了两次表 - 默认情况下,调试模式下的 Flask 与每次更改代码时重新加载的服务器一起运行。为了在启动时执行此操作,它会生成一个实际运行服务器的新进程 - 因此init_db在启动服务器之前调用您的函数,然后在服务器创建子进程以服务请求时再次调用它。

于 2012-08-08T17:17:17.960 回答