Hi,
I have a WinForm C# application with MySQL backend on the server in the company. The application needs to sync with a database on Web.
I thought of adding a is_synced field for the fields needs to be updated but then how can I sync? do I need to SELECT using the first mysql_local_connection and loop through avalable records then connect within the loop to mysql_cloud_connection and do the INSERT?
--> connect to mysql_local_connection
--> SELECT records need to be synced
--> While looping
--------> connect to mysql_cloud_connection
--------> INSERT or UPDATE
--> end loop
is this the best way to do it?
Thanks,
Jassim