I have a sqlite file
CREATE TABLE `mall` (
`id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
`name` TEXT NOT NULL,
`kordinat` TEXT NOT NULL
);
this is select code
cursor = db.rawQuery("SELECT name FROM mall", null);
cursor.moveToFirst();
when I run those code, It work, but when I change "name" field to "kordinat" field, it error and says "no such column: kordinat". please help