attempt to re-open an already-closed object: SQLiteDatabase

Make sure you are only ever working with one instance of SQLiteDatabase. I’m guessing that you have instantiated multiple instances and Android is complaining as a result.

You should take a look at this blog post on the subject too.

Leave a Comment