I want to increase the column in android sqlite database. Im doing so:
public void atualiza(String word){
this.db.rawQuery("UPDATE words SET count = count + 1 WHERE word= ? ", new String[] {word});
}
And I call this method in another class as follows:
this.dh.atualiza(word);
But when I pull the database out of the emulator and check with SQLite Database Browser, this field does not increase. Why?
source
share