Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

OK, after trolling the web I'm a little confused.

If I build a native app from html5 with something like Apache Cordova, can this app keep its offline database up to date with data from the web server?

share|improve this question
HTML 5 has the capability of local storage as well as detecting online/offline so you can do what you want. – ramsinb Sep 14 '12 at 11:59
Cheers, we are looking into SQLite for the storage. But a collegue was convinced that any app which gained information from the web was a web app and as such could not be sold in the app store. From what I can see after our initial research is a web app is just a website optimized for mobile phones.. – John Sep 14 '12 at 17:51

2 Answers

up vote 0 down vote accepted

Yes We can do this using html5 server sent events. I did not try this but i guess it may helpful to u.get data from server to client

For caching

share|improve this answer
Thanks, and cheers for the links too! – John Sep 14 '12 at 17:51

Off course it can. You'll "just" have to synchronize it when your application is connected to the internet.

share|improve this answer
Gracias! I thought this was the case, so basically syncing via ajax with jquery mobile... – John Sep 14 '12 at 17:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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