Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference in contacts versus raw-contacts?

Tags:

I have a "dump" utility that I am using to study the ContactsContract since I don't quite get it in the documentation. When I dump the contacts it counts 263 records in the table, however, the contacts application on my device lists that I have 244 ("Displaying 244 contacts.")

Can someone explain the discrepancy?

My Sprint LG's Contacts App has display options for each of the accounts that I sync and I have gone in and checked all of them, so there shouldn't be any filtering.

The main URI that I am using in the utility is:

    Uri uriRawContacts = ContactsContract.RawContacts.CONTENT_URI;     String[] projection = new String [] {             ContactsContract.RawContactsEntity._ID,             ContactsContract.RawContactsEntity.CONTACT_ID,             ContactsContract.RawContactsEntity.DELETED,             ContactsContract.RawContactsEntity.AGGREGATION_MODE,     };     Cursor cursorRaw = cr.query(uriRawContacts, projection, null, null, null);     DumpCursor.dumpAnyCursor(getApplicationContext(), "RawContacts", cr, cursorRaw, ","); 

Followed by (for each _ID in the above query):

                long rawContactId = Long.parseLong(anyCursor.getString(anyCursor.getColumnIndex(RawContacts.CONTACT_ID)));                  Uri rawContactUri = ContentUris.withAppendedId(RawContacts.CONTENT_URI, rawContactId);                  Uri entityUri = Uri.withAppendedPath(rawContactUri, Entity.CONTENT_DIRECTORY);                   Log.d(TAG, "rawContactUri: " + rawContactUri.toString());                  Log.d(TAG, "entityUri: " + entityUri.toString());                   Cursor c = cr.query(entityUri, new String[] { RawContacts.SOURCE_ID, Entity.DATA_ID, Entity.MIMETYPE, Entity.DATA1 }, null, null, null); 

I then loop through the first query, display all the columns in my projection, then, using the _ID field in the first query's loop, I issue the second query and dump all of its columns.

Bullets from the answer transposed here for convenience: Refer to the reference for more detailed explanation. More specifically, you are encouraged to read about the aggregation rules. Ref: Click here for the original cited text that follows

  • The Contacts database is divided into 3 tables contacts, raw contacts, and data.
  • Each table contains column (_ID) which is an auto incremented primary
    key.
  • The data table contains all the contact info like phone number, mail id,
    address etc.
  • The raw contacts points to the actual contact created. Hence we use the raw contacts while adding a contact.
  • The user cannot add any data in the contacts table. The data in this
    table is populated internally due to
    aggregation of contacts.

The reason your logic worked for some of the contacts is: _ID for contacts, raw contacts remains same until there is any contact aggregation taking place. Lets say you add two contacts with same name abc. Here the _ID for raw contacts increments twice while _ID for contacts increments only once as these two contacts gets merged due to the aggregation of contacts

like image 634
mobibob Avatar asked Mar 11 '11 04:03

mobibob


People also ask

What are raw contacts?

The ID of the row in the ContactsContract. Contacts table that this raw contact belongs to. Raw contacts are linked to contacts by the aggregation process, which can be controlled by the ContactsContract.

What is ContactsContract?

ContactsContract defines an extensible database of contact-related information. Contact information is stored in a three-tier data model: A row in the Data table can store any kind of personal data, such as a phone number or email addresses. The set of data kinds that can be stored in this table is open-ended.


2 Answers

This difference is due to RawContacts getting merged to Contacts due to the aggregation rule.

You add contact to RawContacts while the list displays Contacts. Hence the count difference.

Please find some description between Contacts, RawContacts and Data here. Even though the question is a different one you might be able to get the difference between Contacts and RawContacts.

like image 126
Manish Khot Avatar answered Sep 19 '22 19:09

Manish Khot


The three tables are commonly referred to by the names of their contract classes. The classes define constants for content URIs, column names, and column values used by the tables:

ContactsContract.Contacts table :- Rows representing different people, based on aggregations of raw contact rows.

ContactsContract.RawContacts table :- Rows containing a summary of a person's data, specific to a user account and type.

ContactsContract.Data table :- Rows containing the details for raw contact, such as email addresses or phone numbers.

for more info click

like image 26
Mansukh Ahir Avatar answered Sep 18 '22 19:09

Mansukh Ahir