如何查询数据表中的数据?

发布于 2024-12-07 13:36:37 字数 971 浏览 0 评论 0原文

我使用以下代码在数据表中插入两行:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤寂小茶 2024-12-14 13:36:37

我觉得 SQLite3 不仅仅是内容提供商,是更好的选择。

I feel more than content providers SQLite3 is a better option to work with.

拥抱没勇气 2024-12-14 13:36:37

我自己已经找到了答案。 RawContactsEntity可以很好的解决这个问题。

I have found the answer myself. RawContactsEntity can solve the problem properly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文