sql-server-ce – 使用MS Sync Framework同步两个SQL CE Dbs

前端之家收集整理的这篇文章主要介绍了sql-server-ce – 使用MS Sync Framework同步两个SQL CE Dbs前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我刚刚进入Microsoft Sync Framework.使用sqlSyncAdapterBuilder和sqlServerChangeTracking将本地sql CE 3.5数据库与远程sql Server 2008同步很容易.

不幸的是,同步两个sql CE 3.5数据库看起来并不那么容易……
文档非常稀疏,我不知道如何开始这里.

我的具体情况如下:

>我有一个中央sql Server 2008.
>多个客户端连接到此服务器(其中一些仅部分连接).
>那些(部分连接的)客户端正在使用同一数据库上的多个应用程序(可能同时运行).

将客户端与中央服务器同步应该没问题.在脱机客户端上同步多个应用程序是我考虑使用多个sql CE数据库的地方(一个用作服务器,一个用于每个应用程序实例).在将客户端与服务器同步时以及在客户端同步多个应用程序时,我确实能够使用相同的冲突解决机制.在每个客户端上安装sql Server 2008 Express都是不行的.

有没有人有同步两个sql CE数据库的经验?

解决方法

Sync Framework 2.0允许sql Server Compact Edition数据库之间的同步.

sqlCeSyncProvider is used to
synchronize sql Server Compact
databases.

This provider can be used to synchronize with a central server but also has the ability to synchronize with other clients,which is not possible with sqlCeClientSyncProvider. This ability enables developers to target new scenarios such as a collaboration scenario in which teams of people need to synchronize among each another in the absence of a connection to a central server.

原文链接:https://www.f2er.com/mssql/77050.html

猜你在找的MsSQL相关文章