Synchronizing an SQLite client database with a MySQL server database
cocoa-touch, iphone, mysql, sqlite
Solution
Use a webservice on the server to return both a schema version number and a last updated timedate stamp. If the client is out of date, it makes a second call to get the updated schema and/or new data.
Problem
I have created an app in xcode with sqlite3.I want to create a button named sync to sync with my mysql database in my server. Any suggestion about sync process? Please let me know.