How to query data in data table?
-
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
-
Answer:
I feel more than content providers SQLite3 is a better option to work with.
hongbosb at Stack Overflow Visit the source
Other answers
I have found the answer myself. RawContactsEntity can solve the problem properly.
user674199
Related Q & A:
- How to retrieve data from table using its key?Best solution by msdn.microsoft.com
- How to insert data from one table to another?Best solution by Stack Overflow
- how to pass data from table view to second view controller?Best solution by Stack Overflow
- How do I create an HTML table, in jQuery, with JSON data?Best solution by Stack Overflow
- How do you write specific data to an HTML table?Best solution by Stack Overflow
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.