I need a database for my quiz-like app to store questions and their related information. Due to the extensive nature of the information I need to store, an SQLite database seems to be the only reasonable solution.
I have done some PHP and thus am familiar with MySQL. But the main difference, and the biggest source of confusion, is that there is no way to manage the SQLite database in Android except for java code and I'm not sure how to deal with this logistically the best way. I just need to insert questions once and after that I won't write anything to the database, just read.
Do I write the code with the insert statements, run the app to make it add to the database and then just delete the code, rinse, repeat? It seems like such a cumbersome way, but I can't see any other way.