Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 277 Bytes

README.md

File metadata and controls

10 lines (7 loc) · 277 Bytes

WebSQL

Web SQL Demo

var db = openDatabase('rkdb','1.0','rkfirstdb','210241024'); db.transaction(function(tx){ tx.executeSql("CREATE TABLE IF NOT EXISTS user(id INTEGER UNIQUE, name TEXT(100))"); tx.executeSql("INSERT INTO user(id,name) VALUES(1,'Ranjit kumar')"); });