标签: sqlite isolation-level
我想在SQLite中更改隔离级别。我可以在命令行shell中执行此操作吗?
答案 0 :(得分:0)
理论上,可以使用PRAGMA read_uncommitted更改隔离级别,但这仅适用于shared-cache mode中的sqlite3命令行shell未使用的数据库连接。 / p>
sqlite3
出于实际目的,SQLite transactions always are completely serialized(因为there is no write concurrency首先出现)。