views:

176

answers:

3

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

A: 

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/

Ivo Sabev
A: 

Thanks for this link..

Newbie
I added one more link.
Ivo Sabev
Please don't add replies to other posts as new Answer, post them as comment to the answer. This is stack overflow, not a bulletin board.
dbemerlin
Ok sure, thanks for letting me know..
Newbie
A: 

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?

futtta