I’ve been looking through the tutorial : http://www.vogella.de/articles/AndroidSQLite/article.html
and SQLite seems to have all the basic functionality of Java.SQL
Is there a benefit to using SQLite rather than Java SQL for android development?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Check this page: http://developer.android.com/reference/java/sql/package-summary.html
Second sentence:
The android.database and android.database.sqlite packages offer a higher-performance alternative where source compatibility is not an issue.
SQLite has higher performance.
java.sql has better source compatibility.
I would assume always use sqlite because source compatibility is not a big issue for android