This sample application demonstrates the use HTML5 Web SQL storage. The sample demonstrates how to use the HTML5 Web SQL storage features, how to set the key value pairs and how to retrieve the Key ...
drop table if exists data; CREATE TABLE data ( sale_s_by_region text, f1qtr_1 float, qtr_2 float, qtr_3 float, qtr_4 int ); INSERT INTO data VALUES ('Europe',21704.714,17987034,19485029,22567894); ...