当前位置:  开发笔记 > 编程语言 > 正文

peewee模型会自动关闭连接吗?

如何解决《peewee模型会自动关闭连接吗?》经验,为你挑选了0个好方法。

我正在使用peewee访问SQLite数据库。

我已经model.py喜欢了:

from peewee import *

db = SqliteDatabase('people.db')

class Person(Model):
    name = CharField()
    birthday = DateField()
    is_relative = BooleanField()

    class Meta:
        database = db

然后在另一个Python文件(带有import model)中,我使用Person.create()或调用来操纵数据库Person.select(name=='Joe').delete_instance()

该快速入门说,在结束时调用db.close()关闭连接。这也适用于我的情况吗?我应该打电话给model.db.close()吗?

推荐阅读
保佑欣疼你的芯疼
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有