@Tammen I'm glad that you were able to resolve your issue and thank you for posting your solution so that others experiencing the same thing can easily reference this! Since the Microsoft Q&A community has a policy that "The question author cannot accept their own answer. They can only accept answers by others ", I'll repost your solution in case you'd like to accept the answer .
Issue:
- looking for ways to synchronize data stored on a table in a local database with an online server.you are developing an application that will be run on multiple devices, and each device will store the data collected in a local database. you need to send the data from each database to one main database with each device having its table. you are sking for advice on the best way to go about this, either using SQL or if there is a better way.
Solution:
- To achieve the desired outcome, I stored my local database table in a WinForms dataset. Since my database will only have a few hundred rows, this approach worked well. Then, I inserted the data into the online database using a different connection.
If I missed anything please let me know and I'd be happy to add it to my answer, or feel free to comment below with any additional information.
Regards
Geetha