适用于偶尔连接的系统的复制/同步库
这是我有一个 .Net 桌面应用程序的情况,它将其数据存储在本地文件系统上(使用 sqllite)。并且在远程服务器上有主数据库。当有到特定服务器的拨号连接或有互联网连接时,桌面应用程序需要将数据同步到主数据库。 是否有一个简单的库,用于使用 dailu-up 或互联网连接将偶尔连接的系统与主数据库同步/复制数据?
here is the situation I have a .Net desktop application which stores it's data on local file system (using sqllite). And there is the master database on a remote server which. The desktop application needs to synchronize data to the master database when ever there is a dial up connection to a specif server or when ever there is an internet connection.
Is there a simple library for synchronizing/replicating data for occasionally connected system to/from a master database using dailu-up or internet connection?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要考虑在客户端使用 SQL Server 精简版数据库并使用 Microsoft 同步框架的 数据库同步提供程序,利用 SQL Server 2008 的更改跟踪机制(假设服务器端也有 SQL Server)或者您可以实现自定义同步。同步框架中的提供者。
You may want to consider using a SQL Server compact edition database on the client side and use Microsoft sync framework's database synchronization provider that takes advantage of SQL server 2008's change tracking mechanism (assuming that it SQL server on the server side too) or you can implement a custom sync. provider in the sync framework.