Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我"PRAGMA journal_mode= OFF"在我的代码中使用,但似乎我的数据库没有保留这个设置。当我重新连接到我的数据库时,它显示"PRAGMA journal_mode=DELETE"。为什么会这样?有没有机会让我的数据库中的所有连接保持不变?
"PRAGMA journal_mode= OFF"
"PRAGMA journal_mode=DELETE"
先感谢您!
文档说:
此 pragma ... 设置与当前数据库连接关联的数据库的日志模式。
没有将其保存在数据库文件中的机制。您必须为每个连接设置它。