MGD
MGD

Reputation: 783

Synchronizing database between offline .mdb file and online .mdb file

I want suggestions from the experts, I ve tried to find the solution of the concern issue, unfortunately didn't able to find one. I am using the following

I ve made windows form application already, now i want two copies of a database/.mdb file, one is offline and other is available online, i want to sync both files in case of any changes have been made at either end. I want suggestions in terms of description regarding implementation specially if the components are available to do such sort of job.

Upvotes: 2

Views: 1486

Answers (2)

Ankit Verma
Ankit Verma

Reputation: 91

I posted an article upon on-line off-line database synchronization. here you can find how to synchronize multiple databases (same schema).there should be one master database and others will be updated according to it. you can try this : http://blog.ankitverma.com/2010/03/onlineoffline-database-synchronization/

Upvotes: 0

CesarGon
CesarGon

Reputation: 15335

The Jet engine has a native synchronisation mechanism, called Microsoft Jet and Replication Objects (MS JRO), which you may want to use. This is the reference, and have a look here for some code samples.

Upvotes: 2

Related Questions