My application throws this
Fatal Exception : unknown error (code 14) could not open database
When launched on Android Kitkat 4.4, the application works fine in all previous versions.
An exception occurs on this line.
myDataBase = SQLiteDatabase.openDatabase("path", null, SQLiteDatabase.OPEN_READWRITE);
I tried everything from SQLiteDatabase.create (); SQLiteDatabase.opendatabase (); SQLiteDatabase.openorcreatedatabase (zero); , But still an exception is thrown on this line.
source
share