c# how do i programmatically create a replica [closed]
I am developing winform app that runs in two differen pc's
I want to create a replica and get the changes over the internet
- How can i do that?
- & how can I create replica and sync it using C#?
any ideas will be appreciated
I assume that you are talking about replicating changes in one ms-access "database" such that two instances stay in sync, As such, you'd be better off abandoning ms-access and upscaling to a single centralised database.
this sounds like a bad idea all around.
The common patterns apply;
- use GUID id's,
- send offline datasets,
- cross fingers and look for a job that allows you to use other free tools, suited for the job http://www.microsoft.com/sqlserver/en/us/editions/express.aspx
Avoid conflict resolution (don't edit the same entities on both ends)
Edit PS. after visiting hamsaweb.net; if you need this to be web deployable on a shared host:
- How to deploy SQL CE 4 CTP to shared hosting?
精彩评论