0

I would like to change the isolation level in SQLite. Can I do this in the command line shell?

CL.
  • 173,858
  • 17
  • 217
  • 259
ericj
  • 2,138
  • 27
  • 44

1 Answers1

0

In theory, the isolation level can be changed with PRAGMA read_uncommitted, but this applies only to database connections in shared-cache mode, which are not used by the sqlite3 command-line shell.

For practical purposes, SQLite transactions always are completely serialized (because there is no write concurrency in the first place).

CL.
  • 173,858
  • 17
  • 217
  • 259