Since the WebSQL has lost all the support and the development being stopped, how are people able to implement Offline Storage in web apps using HTML5. I know Google Chrome and Safari are still having it as a part of the browser but I guess soon it will be lost. So which are the technologies that are replacing it and what are the different things that need to be implemented to have an offline app rather than using webSQL?

link|improve this question

68% accept rate
feedback

3 Answers

up vote 2 down vote accepted

Chrome, Firefox and IE10 now also support IndexedDB, a replacement for WebSQL.

link|improve this answer
how different is it from Local Storage? – Shiv Kumar Ganesh Jan 14 at 18:11
@ShivKumarGanesh IndexedDB has a bit advanced API so some tasks can be done easier. Look at msdn.microsoft.com/library/hh673548.aspx – duri Jan 14 at 18:25
1  
feedback

HTML5 supports localStorage, which allows you to store large quantities of data on clients' computers, somewhat comparable to cookies. All major browsers support it by now. You can read all about it at http://diveintohtml5.info/storage.html.

link|improve this answer
Just a note, cookies require each request to pass them along and increase bandwidth. localStorage and sessionStorage never pass data along and they don't have the same storage constraints as cookies. – kitgui.com Jan 14 at 18:09
As the article states, with localStorage, you're limited to 5mb. If you need more, then you need use one of the other (non-standard) mechanisms :-( – Chuck Han Feb 7 at 21:16
feedback

localStorage and sessionStorage are supported in all major browsers now.

If you use JSON2 (google Douglas Crockford and JSON2) you can serialize your JSON objects for local and session storage.

Its not as nice as using SQL queries but you can work with JSON pretty well and there are some plugins to help you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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