SQLite isolation levels (source code)

= <SQLite> isolation levels
{c}
{tag=SQL transaction isolation level}

https://www.sqlite.org/pragma.html#pragma_read_uncommitted mentions:

> The default isolation level for SQLite is SERIALIZABLE

It does not appear possible to achieve the other two levels besides SERIALIZABLE and READ UNCOMMITED

https://www.sqlite.org/isolation.html