Using SQLite Android

2

I developed two applications to learn Android and I used MySQL database. So far I did not find it necessary to use SQLite and to be honest I did not even understand why it exists.

How useful is SQLite in a project?

    
asked by anonymous 07.05.2017 / 04:41

1 answer

1

In general it is used to store application data on the device itself, such as any database.

If you are not doing this you should remove any reference to it in the client application that will run on the device.

Read the SQLite questions here . Several of them are about using on Android.

I just hope you're using MySQL on the server and not in the app.

    
07.05.2017 / 07:25