Hi All,
I am developing an iPhone application that retrieves the data from remote MySQL server. As database is huge i don't want to download data each time application runs, rather then i just want to download the data only one time then sync with SQLite database.(No need to download again and again)
If there is an update on remote MySQL server then only download the updated data.
If there is an insert operation on Remote MySQL server then i can identify from the last inserted ID of database table by comparing primary key values.But How to check for Delete and Update operation with Best efficiency so i just need to download minimum data as a result of delete or update operation?
Any help and suggestion would be appreciated.
Thanks,
Jim.