up vote 4 down vote favorite
2
share [g+] share [fb]

I understand that HTML5 "localStorage" is a key:value store but I am wondering if there is a Javascript library available that offers a more SQL-ish API?

link|improve this question

feedback

5 Answers

up vote 5 down vote accepted

Check out Will HTML5 be SQL-free? and DOM Storage: a Cure for the Common Cookie for some links and opinions.

link|improve this answer
Good reading in those links, thanks! I am also just going to add an article linked to in one of those that gave a good perspective on the usage of SQL for the browser storage > blog.vlad1.com/2009/04/06/html5-web-storage-and-sql – JeroenEijkhof May 10 '10 at 1:11
feedback

You should use HTML5 database storage (it supports SQL through transactions). a tutorial here: http://www.html5rocks.com/tutorials/webdatabase/todo/

link|improve this answer
feedback

W3C Database specification says:

User agents must implement the SQL dialect supported by Sqlite 3.6.19.

As of now, at least Google Chrome supports SQL dialect. I have checked myself.

link|improve this answer
I am using 5.0.342.1 dev version of Chrome. – N 1.1 Mar 6 '10 at 9:41
Around November 2010, the document now reads "This document was on the W3C Recommendation track but specification work has stopped." The IndexedDB document now supersedes it - w3.org/TR/IndexedDB – Kevin Hakanson Jul 1 '11 at 19:41
feedback

HTML5 local database storage comes with a SQL interface by default, if I'm not mistaken

Here is a Webkit post with some examples: http://webkit.org/blog/126/webkit-does-html5-client-side-database-storage/

Currently, Chrome forces you to use Gears, which is slightly different, but still SQL-based. Future versions of Chrome will follow the HTML5 spec, however.

link|improve this answer
See 4.11. Client-side database storage - whatwg.org/specs/web-apps/2007-10-26/#sql – Kevin Hakanson Dec 10 '09 at 2:53
seems rather "experimental"... – jldupont Dec 10 '09 at 14:03
feedback

Your Answer

 
or
required, but never shown

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