我想在sqlite android数据库中增加一列.我是这样做的:
public void atualiza(String word){
this.db.rawQuery("UPDATE words SET count = count + 1 WHERE word= ? ",new String[] {word});
}
this.dh.atualiza(word);
最佳答案
原文链接:https://www.f2er.com/android/430299.html