Based on http://developer.android.com/guide/topics/data/data-storage.html#db it seems like I’d need another Java Class file (which I made), but now I’ve run into a rather sad problem: I’m not sure how to handle it.
How would I call it in my main activity and would it only create the database once, or would it try to re-create the database every time it runs?
This would ‘create’ the database only for the first time. After that you can use an object of that SQLiteOpenHelper class to access that database. Note that you don’t have to worry about the recreation of the database, android will take care of that if you use the SQLiteOpenHelper approach.
Taking the data-storage example forward you would create an object of that and then use the getWriteableDatabase method on that to get write access to the database
For a more detailed example please refer to this tutorial: http://marakana.com/forums/android/examples/55.html