开发者

Access MySQL tables from BlackBerry app

开发者 https://www.devze.com 2023-02-12 04:17 出处:网络
I want to create a BlackBerry app for OS 4.7 that connects to a remote MyS开发者_Go百科QL database and fetches all rows from a table and displays them in the app.

I want to create a BlackBerry app for OS 4.7 that connects to a remote MyS开发者_Go百科QL 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.


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消