var sqlite3 =require('sqlite3').verbose();const path =require('path');var db =newsqlite3.Database(path.join(__dirname,'db.db'));
db.serialize(function(){
db.run("CREATE TABLE if not exists demo (info TEXT,info2 TEXT)");});// db.close();
JavaScript
run()不同的参数传入方式
db.run("INSERT INTO demo(info) VALUES (?)","test",function(err,res){console.log("1:",err,res,this.lastID);});
db.run("INSERT INTO demo(info,info2) VALUES ((?),(?))",["test","test2"],function(err,res){console.log("2:",err,res,this.lastID);});
db.run("INSERT INTO demo(info,info2) VALUES (?,?)",["test","test2"],function(err,res){console.log("3:",err,res,this.lastID);});
db.run("INSERT INTO demo(info,info2) VALUES ($d1,$d2)",{$d1:"f1",$d2:"f2"},function(err,res){console.log("4:",err,res,this.lastID);});
db.run("INSERT INTO demo(info,info2) VALUES (?2,?1)",{1:"f1",2:"f2"},function(err,res){console.log("5:",err,res,this.lastID);});
db.run("INSERT INTO demo(info,info2) VALUES (@d1,@d2)",{"@d1":"f1","@d2":"f2"},function(err,res){console.log("6:",err,res,this.lastID);});
db.run("INSERT INTO demo(info,info2) VALUES (:d1,:d2)",{":d1":"f1",":d2":"f2"},function(err,res){console.log("7:",err,res,this.lastID);});
db.exec("INSERT INTO demo(info) VALUES ('test')",function(err,res){console.log("10:",err,res,this.lastID);});
db.exec("INSERT INTO demo(info,info2) VALUES ('test','test2')",function(err,res){console.log("11:",err,res,this.lastID);});