使用 .netcf 2.0 从 POcket PC 应用程序进行 Mysql 连接
我们正在 .netcf 2.0 中使用 C# 开发 PDA 中的订单接收系统。 所以我们有 mysql 服务器作为我们的后端。 Web服务是连接mysql和PDA的唯一方法吗? 或者还有其他方法吗..?
We are developing an order taking system in PDA using C# in .netcf 2.0. So we are having mysql server as our back end. Is that the web service is the only way to connect mysql with PDA? Or is any other methods available..?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不相信 Compact Framework 中有 MySQL 的数据提供程序。
我建议您阅读 移动应用程序架构指南,尤其是数据层章节,以了解您的选择。
I don't believe there is a Data Provider for MySQL in Compact Framework.
I recommend that you read the Mobile Application Architecture Guide, especially the Data Layer chapter to see what your options are.
MySql 网站上有一个 .netcf 连接器可供下载。
我建议使用版本 5.2.7 并且不要忘记将 "pooling=false" 放入连接字符串中,否则连接将失败并出现异常 "MissingManifestResourceException" 。
连接字符串示例:
“保留安全信息=False;数据库=DATABASE_NAME;服务器=SERVER_IP_ADDRESS;用户 ID=USERNAME_TO_LOGON;密码=PASSWORD;池化=false”
There is a .netcf connector on MySql web site available for download.
I recommend to use version 5.2.7 and not to forget to put "pooling=false" into the connection string, otherwise connection will fail with exception "MissingManifestResourceException" .
Connection string example:
"Persist Security Info=False;database=DATABASE_NAME;server=SERVER_IP_ADDRESS;user id=USERNAME_TO_LOGON;Password=PASSWORD;pooling=false"