SQLite is a opensource SQL database that stores data to a text file on a device. Android comes in with built in SQLite database implementation.
Read moreCan I use Java with MySQL?
To connect to MySQL from Java, you have to use the JDBC driver from MySQL . The MySQL JDBC driver is called MySQL Connector/J. You find the latest MySQL JDBC driver under the following URL: http://dev.mysql.com/downloads/connector/j. The download contains a JAR file which we require later.
Read more