C# 到 MY SQL 延迟查询执行
我有一个c# Windows应用程序,当我在LAN(本地数据库服务器)工作时,它使用MySQL数据库,它工作正常,但是当我通过互联网访问数据库服务器时,延迟查询执行太多了。
I have a c# windows application which uses MySQL database when I work in LAN (Locally with DB Server) it works fine but when I access to database server through the internet the delay on query execution is to much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许您应该使用Web服务或WCF来查询,而不是应该在本地与数据库服务器一起使用的服务,应该从互联网上进行令牌查询并获取选择。在此过程之后,服务应该将数据表返回到所需的客户端。
Maybe you should use a Web Service or WCF to Query ,than that Service which should be Locally with the DB Server ,should proceed with Token Query from the Internet and get the Select.After this procedure the service should Return to desired client the DataTable .