For testing purposes, I want to install my app and then copy over the db but I'm getting an error opening up the db:
06-09 20:20:54.414: INFO/Database(8854): sqlite returned: error code = 14, msg = cannot open file at source line 25467
06-09 20:20:54.414: ERROR/Database(8854): sqlite3_open_v2("/data/data/com.mydomain.myproductname/databases/myproductname.db", &handle, 6, NULL) failed
Even if I delete the db at this point and try to start the app it still doesn't work. The only way to make the error go away is to reinstall the app. Any suggestions for what I should check?
(This is a similar question to Android SQLiteOpenHelper cannot open database file but the solution the asker gave was to uninstall app but I don't want to do that. My provider is pretty similar to the notepad example except I also do some INSERTs after creating the tables though this doesn't seem to be the issue.)