我想通过SQLAlchemy
检查SQLite
文件是否已锁定。
我找到了许多有关锁定文件解决方案的答案,但没有关于检测到此状态的答案。
伪代码:
engine = sqlalchemy.create_engine(...)
session = sessionmaker(bind=engine)
if session.db_file_is_locked: # <- !
print('File is locked, do something about it!')
有什么想法要实现吗?
谢谢!