Licence
MIT
Version
0.0.6
Deps
1
Vulns
0
Weekly
0
Usage
require the module
var sqlHandler = require("sqlhandler");connect and open the sqlite3
sqlHandler.openDB('./resource/SYS_FILE.db') ; // param : the path of your dboperations
sqlHandler.findAll(function (rows) { // find all records form the db data = rows ; console.log(data) ; }) ;
......