How to insert JSON OBJECT data into SQLite -
i have following code insert json object sqlite database. used loop insert each json object data database. last json object inserted database.
db.transaction(function(tx) { tx.executesql('create table news_posts (id integer primary key, title text, content text,thumbnail text,url text,date datetime)'); }); (var = 0; < json.posts.length; i++) { db = window.opendatabase("news", "1.0", "posts database", 200000); db.transaction(function(tx) { tx.executesql("insert news_posts (title,content,thumbnail,url,date) values (?,?,?,?,?)", [json.posts[i].title,json.posts[i].content,json.posts[i].thumbnail,json.posts[i].url,json.posts[i].date], function(tx, res) { console.log("success"); }); }); }
Comments
Post a Comment