1

我正在使用烧瓶 python 框架和 Sqlite 作为数据库编写一个简单的社交媒体应用程序。但是运行程序后,它显示以下错误。我有点困惑是什么导致了这个错误。

peewee.OperationalError: Connection already open

我的计划是创建一个登录视图,以便用户可以输入他们的电子邮件和密码来登录。到目前为止,我已经创建了一个用于登录的视图,它将用户重定向回索引页面。上述错误表明我还没有关闭数据库。models.py但是,我编写的用于连接和关闭数据库的两个函数(在 中)如下所示:

def initialize():
    DATABASE.connect()
    DATABASE.create_tables([User], safe=True)
    DATABASE.close()

我把它叫app.py进来models.initialize()

if __name__ == '__main__':
    models.initialize()
    app.run(debug=True, port=8000, host='0.0.0.0')

有了app.py以下函数装饰器的方法:

@app.before_request
def before_request():
    """Connect to the database before each request"""
    g.db = models.DATABASE
    g.db.connect()


@app.after_request
def after_request(response):
    """Close the database after each request"""
    g.db.close()
    return response
4

1 回答 1

0

不知何故,似乎有一个连接被泄露了。您可以使用get_conn()代替,connect()这将确保连接不会打开两次。

于 2017-03-23T19:19:00.090 回答