这是一个创建于 4599 天前的主题,其中的信息可能已经有所发展或是发生改变。
在看peewee文档的例子说明时,文档中有这段:
Because sqlite likes to have a separate connection per-thread, we will tell flask that during the request/response cycle we need to create a connection to the database. Flask provides some handy decorators to make this a snap:
@app.before_request
def before_request():
g.db = database
g.db.connect()
@app.after_request
def after_request(response):
g.db.close()
return response
是不是只有用sqlite的时候才需要 db.connect(),然后 db.close呢?
我看其他例子都没见到db.close影子,记得asp+access时随处可见。
2 条回复 • 1970-01-01 08:00:00 +08:00
|
|
1
kingwkb 2012-04-06 12:51:45 +08:00 via Android
这个有没有都行,一个请求执行完毕后会释放所有资源
|
|
|
2
loading 2012-04-06 15:26:14 +08:00 via Android
|