I am developing a mobile application and I am not sure how to do this. I am going to use Appcelerator Titanium for iPhone.

I don't want the user to make calls to online database whenever there is a change in the local SQLite database on users phone.

I want to do this so that users can work offline.

Later, when the user press a button, I want all the changes to be copied to an online database (only things that have changed).

I dont know what would be the best way to go about it.

One obvious way is, everytime I sync, I copy the entire database from phone to the webserver. But somehow it seems illogical or maybe not.

Looking for suggestions.

link|improve this question

73% accept rate
feedback

1 Answer

  1. Use a 'last updated' column in your database.

  2. Keep a table of 'synch' events, recording the timestamp of each synch event.

  3. When you sync, filter rows that were changes since 'last synched'.

I would structure my database so that each record has a UUID - this is so that you can match the local database rows against mirrored ones on the server.

Hope this gives you some ideas.

link|improve this answer
Thanks, I am going to try this. Hope it works. – ssdesign Mar 23 '11 at 3:47
feedback

Your Answer

 
or
required, but never shown

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