从.net到SQL的传输压缩
我有一个win forms应用程序,用户可以离线使用,他们必须使用3g调制解调器和cisco VPN来同步数据,不幸的是,有限的带宽、较差的信号质量和大量传输的数据使得同步过程不可靠。
有没有办法让.net压缩SQL命令,然后让sql解压缩并运行,然后再以压缩回复形式发送结果以减少网络流量?
I have an win forms App that the users use off line, any they have to sync data using a 3g modem and a cisco VPN, unfortunately the limited band width, poor signal quality and large volume of data transferred is making the sync process unreliable.
is there any way to get .net to compress the SQL commands and then having sql decompress and run before sending the results in a compressed reply to reduce the network traffic?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要创建离线同步,我建议使用 Service Broker。您可以发送 XML 格式的数据。在 xml 内部,您可以将 SQL 服务器端基于 CLR 的过程压缩的数据发送到
您可以在这里找到示例:
http://www.codeproject.com/KB/database/blob_compress.aspx
To create off-line synchronization i recommend to use Service Broker. You can send data in XML. Inside of xml you can send data compressed by CLR-based procedure on SQL server side to
Example you can find here:
http://www.codeproject.com/KB/database/blob_compress.aspx