KenCorbettJr / html5sql

A helper javascript module for creating and working with HTML5 Web Databases.
http://kencorbettjr.github.io/html5sql/
MIT License
83 stars 64 forks source link

Mistake in README example #9

Open pihomeserver opened 8 years ago

pihomeserver commented 8 years ago

Hello, In the documentation from the README you give an example (in General Guide for Using section) :

"CREATE table (id INTEGER PRIMARY KEY, data TEXT);"

Should be

"CREATE TABLE table (id INTEGER PRIMARY KEY, data TEXT);"
pihomeserver commented 8 years ago

Also in the section An Array of SQL Statement Objects, a " is missing at the end of the SQL instruction