Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am developing one application that requires records from Addressbook, I need all details of contact, plus I am using google service to get lat-long of contact address and storing this details to SQLite.

Now the questions are:
1). Which one is better option, storing unique record identifier of contact in SQLite or storing all details of contact?
2). If your answer is identifier then will this unique record identifier refer the same record every time?

share|improve this question

2 Answers

up vote 2 down vote accepted

1). Which one is better option, storing unique record identifier of contact in SQLite or storing all details of contact?

I would say there is no need to store the whole data, since that is already stored in the device, so a simple identifier will do.

2). If your answer is identifier then will this unique record identifier refer the same record every time?

Yes, it must refer to the same record every time, which is why it is a unique identifier.

Additionally I would recommend reading the section of unique identifiers in the AddressBook framework directly from the source: Apple Address Book Programming Guide

Hope that helps.

share|improve this answer

The addressbook unique identifier is not same always. it has the possibility of changing if you run some sync apps like google contacts of TAPP Addressbook as it get the contacts deleted and add again. best ways is to generate some hash code like combining all properties and then check in db if one not match then delete from sqlite that not matches and add new one in db.

remember if you are on a single device then no problem for an id. but if your contacts are being communicated with any server of device like mac. then you need to find a better solution. i found one that i've mentioned.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.