I am trying to develop an app that gets data from a central mysql server and can then be used offline and, at a later date, can syncronize with the server.
If the user is connected to the net, this would be at one minute intervals.
After reading up on ADO.NET I believe that using a mysqlDataAdapter to dump the tables to a dataset (whcih can also be then dumped to xml for offline usage) would be the best way to approach it.
I created a small test dbase containing one table, which has an id column (unique auto increment) and a datemask (showing last date that each row was updated. The system uses the fill method to get the data to the dataset and the update method to upload any changes back to the database with no problems at all.
Where I am encountering difficulties is when the database data changes. Not the rows that I am updating.... but other rows eg. Diff user adds a new record.
I cannot seem to find any information on how to bring these changes back down to the dataset. I am sure there must be a way to do this and I have just missed it.
Can anyone provide some ideas or info on how to do this? I have been searching and trying everything I can with no luck and I am totatlly stuck
