[Solved] Do you need a server for SQLite [closed]


Basically it depends on your requirement. If you want to store your data outside of the mobile itself for any reason such as fetching and updating them from multiple devices you can use a server to host your database and perform read, write operations. If not, if you only want to use your data inside your app itself, you can make use of the SQLite databases and perform read and write operations locally.

4

solved Do you need a server for SQLite [closed]