While running this SQLITE statement, I am getting error: incomplete input
return db.run(
`INSERT INTO articles(article_id, title, author, article) VALUES `+"('"+article_id+"', '"+data.title+"', '"+data.author+"', '"+data.article+"')",
(err) => callback(err, article_id));
What's wrong in it? I have logged all the data inputs, but they are having correct values in the query(i.e. no values missing). Is it due to wrong syntax? Please help.