更新数据库下载地址

This commit is contained in:
MarkusJoe
2022-04-04 13:55:46 +08:00
parent 10c425d5c8
commit b2b509e53b
2 files changed
+12 -6

No files matched your search

+1 -1
View File
@@ -18,7 +18,7 @@ class SQLite:
初始化SQLite对象
完成后会自动提交, 自动关闭
"""
self.__path = './app/db/data.db'
self.__path = './app/db/data.sqlite'
self.__conn = sqlite3.connect(self.__path)
self.__cursor = self.__conn.cursor()