从 BlackBerry 应用程序访问 MySQL 表
我想创建一个适用于 OS 4.7 的 BlackBerry 应用程序,该应用程序连接到远程 MySQL 数据库并从表中获取所有行并将其显示在应用程序中。
我搜索了一下,有人说我可以使用 PHP 作为设备上的应用程序的中间件来与之通信,而不是直接访问数据库。
I want to create a BlackBerry app for OS 4.7 that connects to a remote MySQL database and fetches all rows from a table and displays them in the app.
I searched and some say that I can use PHP as a middleware for the app on the device to talk to instead of directly accessing the database.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的服务器上可能有该数据库。您无法直接从设备上的应用程序访问数据库。相反,您可以构建一个 Web 服务来访问该数据库并以易于解析的格式 (xml/json) 将信息返回到应用程序。然后,应用程序将访问 Web 服务并解析它返回的响应。
You probably have that database on a server. You cannot access the database directly from the application on your device. Instead you can build a web service that accesses that database and returns the information to the application in a easy to parse format(xml/json). The application would then access the web service and parse the response it returns.