I\'m trying to create the following database:
public static final String KEY_NAME = \"nombre\"; public static final String KEY_ROWID = \"_id\"; public static fin
Hm...try this idea:
Have you tried to allow writing to the database before you do the writing? SQLiteDatabase.OPEN_READWRITE?
SQLiteDatabase.OPEN_READWRITE
Like
mDb=SQLiteDatabase.openDatabase(PATH, null, SQLiteDatabase.OPEN_READWRITE);?
mDb=SQLiteDatabase.openDatabase(PATH, null, SQLiteDatabase.OPEN_READWRITE);