我想为“存在元组”创建一个方法?
我使用经典 StartManagingCursor 方式的旧方法是:
public boolean exist(long uid){
boolean ex = false;
Cursor c= db.rawQuery("SELECT COUNT(*) FROM " + Person.PERSON_TABLE + " WHERE uid = "+ "'" + uid + "'", null);
c.moveToFirst();
int jcount = c.getInt(0);
if (jcount >0){
ex=true;
}
return ex;
}
现在我想用 ContentProvider 为我的 sqlite db 做到这一点。我如何使用我的 contentprovider 类的查询方法来做到这一点?