我正在使用SQLite和python。
我关闭SQLite DB的代码如下。
def close(self):
if not self.closed:
self.db.closeDB()
self.closed = True
def closeDB(self):
self.cursor.close()
我有一个变量'关闭'不要关闭数据库两次。这个变量是否必要?如果我两次调用close()函数会发生什么?
答案 0 :(得分:2)
是的,这是保存。只需确保您不想在已关闭的连接上运行。