Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am creating an Android application that queries certain content providers, stores it to a SQLite database, and then periodically pushes the data to the server.

I need to implement it so that it only stores new data. So, for example, if my service queries the SMS content provider every 30 minutes, I would only want to access the SMS messages that were sent in the last 30 minutes.

Any idea how to implement this?

A hackish way I can think of is to query the entire content provider, look at the time stamp, and only add it to the SQLite database if the timestamp is within the last 30 minutes. Is there a better / more efficient way to do this?

share|improve this question
unixtime might be faster than timestamp. – wtsang02 Dec 16 '12 at 20:59

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.