Reputation: 11
I am new to android development. I need to create an app having login and register pages..but I'm confuse a little bit between two types of databases Mysql and SQLite.
I just what to know when to use SQLite and Mysql.
Upvotes: 0
Views: 1275
Reputation: 3025
My sql is server side data base and if you want to use my sql then you need to call web service .
SQLite Database is light weighted data base used in mobile as local data base.
Upvotes: 1
Reputation: 57
SQLite Database is an lite weighted edition its made for an android. It is in-builded in android studio itself. So there is no need to install it newly but MySQL is an Oracle database. Marketed as cost effective. SQLite is not as much of a SQL server. It is really just a database system. The databases can be embedded in applications
Upvotes: 0