vote up 2 vote down star
2

Essentially, I wanted to run a piece of demo code from W3c Offline Webapps page. It looks like that:

 var db = window.openDatabase("notes", "", "The Example Notes App!", 1048576);

Firefox 3.5, IE8 and Chrome do not seem to get it. Is there anybody out there that actually wrote support for that? Or is this wishful thinking about 'the standard of the future'?

flag

79% accept rate
I believe Safari 3.1 supports openDatabase. – Ambirex Jul 28 at 17:40

5 Answers

vote up 13 vote down check

Wikipedia has a table comparing the various browser engines and what portions of HTML5 they support.

A reposted internal Yahoo! article also details some differences between localstorage support, to quote:

Firefox 3.5, Safari 4, IE8: HTML5 localStorage; these modern browsers all support the core localStorage functionality defined in the HTML5 draft.

Firefox 2.x and 3.0: Gecko globalStorage, a very early implementation similar to HTML5’s localStorage.

Safari 3.1 & 3.2: HTML5 Database Storage, because Safari 3.1 and 3.2 don’t support HTML5 localStorage.

IE6, IE7: userData persistence, a rarely used IE feature for associating string data with an element on a web page and persisting it between pageviews.

Google Chrome: Gears Database API, which is built into Chrome and thus doesn’t require a separate install. Surprisingly, Chrome doesn’t yet natively support any form of HTML5 Storage.

link|flag
+1 for a good answer with many sources. – statenjason Jul 28 at 19:03
Thanks for very extensive answer! – Marcin Jul 29 at 6:22
vote up 0 vote down

AFAIK, WebKit supports it.

link|flag
1  
Some references would be nice. – Ionut G. Stan Jul 28 at 15:20
vote up 2 vote down

I believe Safari 3.1 supports openDatabase.

You should check out the PersistJS library, which provides in interface to all the different offline storage capabilities of the different browsers and plugins. It currently supports:

* flash: Flash 8 persistent storage.
* gears: Google Gears-based persistent storage.
* localstorage: HTML5 draft storage.
* whatwg_db: HTML5 draft database storage.
* globalstorage: HTML5 draft storage (old spec).
* ie: Internet Explorer userdata behaviors.
* cookie: Cookie-based persistent storage.
link|flag
vote up 0 vote down

WebKit (as used by Safari and WebKit/gtk at least) supports localStorage, sessionStorage, client-side databases and the application cache. Other WebKit ports (WebKit/qt, WebKit/wx, Chrome, etc) haven't yet turned on support :-(

link|flag
Is that true of both the mainline and beta line of Chrome? – Nosredna Jul 28 at 19:02
vote up 0 vote down

The iPhone version of Safari has rather good support for HTML5, including offline storage.

link|flag

Your Answer

Get an OpenID
or

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