Does anyone know of a good online resource which gives a clear reference on the SQL syntax supported by HTML 5 client-side databases? I've looked about and cannot seem to locate one.

Thanks

link|improve this question

67% accept rate
feedback

2 Answers

up vote 1 down vote accepted

This is still a working draft, but you can read more about it here - http://dev.w3.org/html5/webdatabase/

You might be interested in this too - http://net.tutsplus.com/tutorials/html-css-techniques/quick-tip-learning-about-html5-local-storage/

link|improve this answer
feedback

the short answer: http://sqlite.org/lang.html

the long answer: the sql-syntax isn't in the spec, because it's entirely defined by sqlite, the db-engine used by both safari and chrome (the two browsers to support webdb, with opera probably following soon(ish) and ms and mozilla refusing to follow just because of the fact that such a spec would be too dependant of the evolution of an external component). so you'll probably want to look at the sqlite sql dialect?

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.