Check Database exist fails android sqlite3openv2
I developed an android application where I shipped an sqlite database with the application. The Sqlite is initially stored at assets folder, and then copied to the proper directory (/data/data/[package]/databases/[db-name]) upon launch. I had the following piece of code for checking the existence of a database. public boolean databaseExist() { SQLiteDatabase checkDB = null; try […]