Android Question Disabling WAL for SQLite database on Android 9

nickkat

New Member
Licensed User
Longtime User
It seems android 9 is enabling by default SQLite databases to use journal mode WAL.
How can I disable this?

I have tried the following but it doesn't seem to do work.
B4X:
 Dim c As Cursor
c = SQL.ExecQuery("pragma journal_mode=delete")
c.Close
 
Last edited:
Top