newbie
newbie

Reputation: 428

Where can I find a definitive reference on HTML 5 database SQL syntax support?

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

Upvotes: 2

Views: 1056

Answers (2)

futtta
futtta

Reputation: 5920

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?

Upvotes: 0

Ivo Sabev
Ivo Sabev

Reputation: 5240

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/

Upvotes: 2

Related Questions