Fatal Exception: unknown error (code 14) could not open the database

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.

+4
source share
1 answer
0

Source: https://habr.com/ru/post/1532786/


All Articles