我写
Cursor c = db.query("contacts", null, "label <> ?", new String[]{cons.LABEL_SKIP}, null, null, "name");
cons.LABEL_SKIP等于Skipped;
我想选择标签不等于Skipped的数据库行,但答案是空的。
答案 0 :(得分:0)
以这种方式试试
Cursor c = db.query("contacts", null, "label != ?",
new String[] { cons.LABEL_SKIP });