Renaming column in Android sqlite database results in error
- by Apophenia Overload
I've been modifying the Notepad tutorial for Android very subtly- all I did was rename the column from title to name:
Before:
public static final String KEY_TITLE = "title";
...
private static final String DATABASE_CREATE =
"create table notes (_id integer primary key autoincrement, "
+ "title text not null, body text not…