2

Possible Duplicate:
Android sqlite returned: error code = 14

I have used SQLiteAssetHelper class/library to manipulate a database from assets/databases folder like indicated in that link. I did exactly all the instructions, but i still can't access to the database.

09-27 19:35:46.417: I/Database(27474): sqlite returned: error code = 14, msg = cannot open file at source line 25467
09-27 19:35:46.417: E/Database(27474): sqlite3_open_v2("/data/data/com.gatec.douaa/databases/data", &handle, 2, NULL) failed
09-27 19:35:46.428: W/SQLiteAssetHelper(27474): could not open database data - unable to open database file
09-27 19:35:46.428: W/SQLiteAssetHelper(27474): copying database from assets...
09-27 19:35:46.447: W/SQLiteAssetHelper(27474): extracting file: 'database.db'...
09-27 19:35:46.477: E/SQLiteAssetHelper(27474): Couldn't open data for writing (will try read-only):
09-27 19:35:46.477: E/SQLiteAssetHelper(27474): com.readystatesoftware.sqliteasset.SQLiteAssetException: Missing databases/data.zip file in assets or target folder not writable

Code:

public class MyDatabase extends SQLiteAssetHelper {

    private static final String DATABASE_NAME = "data";
    private static final int DATABASE_VERSION = 1;

    public MyDatabase(Context context) {
        super(context, DATABASE_NAME, null, DATABASE_VERSION);


    }

Any help please? Don't know the source of the problem.

Community
  • 1
  • 1
androniennn
  • 3,117
  • 11
  • 50
  • 107

1 Answers1

0

Why did you put your .db file in a .zip ? Please try put it in assets without archived. Or you can try put a little without-problem .db file in zip archive for understanding where problem is.

Göksel Güren
  • 1,479
  • 13
  • 21