0

The problem is synchronize the data at the end of the day.

How can i achieve this.

how can i achieve this ??Tell me something releted to delphi or higher version and using internet.

Johan
  • 74,508
  • 24
  • 191
  • 319
  • check out [this tool](http://code.google.com/p/tungsten-replicator/), you will find helpful notes [here](http://scale-out-blog.blogspot.com/2012/04/if-you-must-deploy-multi-master.html), this may need just slight changes in your application, heavy lifting is on DB and external utilities – Hawili Aug 10 '12 at 10:30

1 Answers1

2

You could continue to update your local database from your application, and then use a separate service to perform database replication with the remote location. Take a look at SymmetricDS open source database replication. It actually has its origin from POS implementations. It can capture data changes from MySQL and synchronize the data to another database asynchronously. You can control the schedule when it syncs data, which could be at the end of the day. It includes a conflict manager to detect and resolve any change conflicts. If you need help, there is also a commercial version called SymmetricDS Pro with development and production support.

Eric Long
  • 926
  • 4
  • 3