SQLite Forum

How to update build-in SQLite version to 3.33.0 in my Android app?
Login

How to update build-in SQLite version to 3.33.0 in my Android app?

(1) By anonymous on 2020-08-22 11:05:40 [source]

My Android app currently using build-in SQLite version 3.25.2 and I would like to use SQLite version 3.33.0.

The main reason for that is that I am having some issues when the user uses Android with SQLite journal_mode WAL.

More information:

The sqlite.org website suggests to use SQLite version 3.7.0 or later.

"A database in WAL journaling mode can only be accessed by SQLite version 3.7.0 (2010-07-21) or later."

Also, my app implemented SugarDB to manipulate with the database.

Questions:

How to update SQLite version to 3.33.0 in my app step by step?

Is it possible that the update broke some code already exist?

Is it possible that the update broke the connection between SQLite and SugarDB?