如何查询数据表中的数据?
我使用以下代码在数据表中插入两行:
ops.add(ContentProviderOperation.newInsert(RawContacts.CONTENT_URI).withValue(
RawContacts.ACCOUNT_TYPE, null).withValue(RawContacts.ACCOUNT_NAME,
null).build());
ops.add(ContentProviderOperation.newInsert(Data.CONTENT_URI).withValueBackReference(
Data.RAW_CONTACT_ID, rawContactInsertIndex).withValue(Data.MIMETYPE,
StructuredName.CONTENT_ITEM_TYPE).withValue(StructuredName.DISPLAY_NAME,
"a").build());
ops.add(ContentProviderOperation.newInsert(Data.CONTENT_URI).withValueBackReference(
Data.RAW_CONTACT_ID, rawContactInsertIndex).withValue(Data.MIMETYPE,
GroupMembership.CONTENT_ITEM_TYPE).withValue(CommonDataKinds.GroupMembership.GROUP_ROW_ID,
"groupa").build());
所以我在数据表中得到了两个新行。但是当我想获取联系人的groupId(其中display_name是a)时,我不知道该怎么做。< br> 谢谢
I used the following code to insert two row in data table:
ops.add(ContentProviderOperation.newInsert(RawContacts.CONTENT_URI).withValue(
RawContacts.ACCOUNT_TYPE, null).withValue(RawContacts.ACCOUNT_NAME,
null).build());
ops.add(ContentProviderOperation.newInsert(Data.CONTENT_URI).withValueBackReference(
Data.RAW_CONTACT_ID, rawContactInsertIndex).withValue(Data.MIMETYPE,
StructuredName.CONTENT_ITEM_TYPE).withValue(StructuredName.DISPLAY_NAME,
"a").build());
ops.add(ContentProviderOperation.newInsert(Data.CONTENT_URI).withValueBackReference(
Data.RAW_CONTACT_ID, rawContactInsertIndex).withValue(Data.MIMETYPE,
GroupMembership.CONTENT_ITEM_TYPE).withValue(CommonDataKinds.GroupMembership.GROUP_ROW_ID,
"groupa").build());
So i got two new line in data table.But when i want to get a contact's groupId which display_name is a, i don`t know how to do.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我觉得 SQLite3 不仅仅是内容提供商,是更好的选择。
I feel more than content providers SQLite3 is a better option to work with.
我自己已经找到了答案。 RawContactsEntity可以很好的解决这个问题。
I have found the answer myself. RawContactsEntity can solve the problem properly.