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.
我的 cygwin 版本sqlite3存在临时目录不存在的问题,因此我必须在提示符或查询文件中设置选项:
sqlite3
PRAGMA temp_store = MEMORY;
或者
PRAGMA temp_store_directory = ~/;
但我想知道是否可以选择将其设置PRAGMA为永久。
PRAGMA
PRAGMA temp_store仅影响当前连接。
PRAGMA temp_store
永久更改此设置的唯一方法是使用SQLITE_TEMP_STORE 选项的另一个值重新编译 SQLite 。