Sqlite for Android

sqlite database in android is used to store data which will not be stored in the backend but inside your phone only which you would not like to fetch from network everytime! for instance- user’s ride history or user specific data. Although they’ll need to be updated in regular interval.

In mysql you would need to store the backend data. so these two are two different things.

i hope you understand the diff among these and if you don’t you should read a lot about these.

Leave a Comment