这是一个封装了sqlite数据库操作的npm包
使用的时候请使用async/await等异步接收,例如下:
var data = require("narumi-sqlite")
async function test(){
let text = await data.getData("../db/sqlite.sqlite3","select * from 'business'",[]);
console.log(text);
return text;
}
参数介绍:
data.getData(db,sql,sqlArr)
db为sqlite数据库文件路径
sql为执行数据库操作语句,其中包含?通配符
sqlArr为通配符参数