Synchronizing an SQLite client database with a MySQL server database

前端 未结 6 1754
遇见更好的自我
遇见更好的自我 2020-12-01 01:35

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 m

6条回答
  •  执念已碎
    2020-12-01 02:33

    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.

提交回复
热议问题