将sql mobile数据与mysql服务器同步
我们可以将SQL mobile中的数据与SQL Server同步。 但我需要将移动数据与mysql服务器同步。 有什么办法可以实现我的要求吗...?
We can synchronize the data from SQL mobile with SQL Server. But i need to synchronize the mobile data with mysql server. Is there any way to accomplish my requirement...?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该查看ado.net 同步服务。 您将需要编写一些代码,但可以与 ADO.NET 提供程序可用的任何数据库同步。 http://dev.mysql.com/downloads 有一个 MySQL 提供程序/connector/net/6.0.html
you should check out sync services for ado.net. You will need to write a bit of code, but you are able to sync with any database for which an ADO.NET provider is available. There is a MySQL provider available from http://dev.mysql.com/downloads/connector/net/6.0.html
您当前正在使用 Microsoft Sync Framework 吗? 虽然这是在移动设备上的 SQL CE 数据库和服务器端的 SQL Server 2008 之间配置的最简单方法,但也可以为其他 DBMS 编写自定义 SyncProvider。 我只有为 Oracle 后端编写自定义同步提供程序的经验,这里有有关如何执行此操作的详细信息:http://www.syncguru.com/projects/SyncServicesDemoOracle.aspx - 但您可以使用 .net 提供程序为任何 DBMS 编写同步提供程序。
Are you currently using the Microsoft Sync Framework? Whilst this is simplest to configure between a SQL CE database on the mobile device and SQL Server 2008 on the server side, it is also possible to write custom SyncProviders for other DBMS's. I've only had experience with writing a custom sync provider for an Oracle backend, and there's details on how to do this here: http://www.syncguru.com/projects/SyncServicesDemoOracle.aspx - but you can write a sync provider for any DBMS with a .net provider.