I have a scenario where my software has to work even when there is no internet connectivity.
I have designed my application in such a way that the entire logic is deployed on the local system which generates the data into local database.
When ever internet is available a cron job would update the data from the local database to the appengine mysql database using a webservice.
The DB Structure in both the cases, the offline and the appengine database is same.
As the DB Structure is exactly same, is there any way available to sync up the two databases (Local and App engine) other than using webserivce or likewise ??