I am designing an app with the Blackberry WebWorks SDK (HTML5) which needs to obtain data from an SQL server and display it on the app in a simple list. What is the best way to approach the transfer of data in this case? I have been researching and have come across JSON; would I have to use something like that to do the parsing between the server? I have never dealt with server sided languages so the details of how I would accomplish this are a bit confusing.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

use JSON to transfer data between your server & BB device. Since JSON has small memory & bandwidth footprint. If you are planning to save data in local storage use HTML5 sql database. Local storage is not supported in BB smart phones.

JSON parser [if you are not using jQuery] - json2.js

https://github.com/douglascrockford/JSON-js

link|improve this answer
Since I'm assuming the javascript file stays on the blackberry device, how does it communicate between the server? I would assume there needs to be some php script connecting mysql to obtain the data. I'm a bit confused on this setup, since I'm seperating a javascript file and a php file that I would normally have together on the server. – user1152440 Feb 27 at 21:28
1  
Okay - All your javascript files, html files, css and images (icons & other offline files) should be served locally (from device itself). Only fetch data from server using AJAX in the form of JSON. – Praveen Vijayan Feb 28 at 5:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.