Question regarding SQLite

Suppose I have an app which stores some images in the favourite tab/screen using inbuilt SQLite. So I want to know whether the data stored in SQLite table will be saved after the app is updated from the play store or not?

1 Like

The creation of the SQLITE table (Create Table), within your app, is usually done with the " IF Not Exist " clause.

Sqlite as well as TinyDB is a persistent database, i.e. after an update the previously stored data still is there…
Taifun

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.