Hey, I want to increment a column in a sqlite android database. Im doing like this:
public void atualiza(String word){
this.db.rawQuery("UPDATE words SET count = count + 1 WHERE word= ? ", new String[] {word});
}
And I call this method on another class like this:
this.dh.atualiza(word);
But when i pull the database from the emulator and check with the SQLite Database Browser, the field is not incremented. Why?