sqlhandler
v0.0.6
Published
connect to the sqlite3 and simple curd opertaion
Downloads
8
Readme
Usage
require the module
var sqlHandler = require("sqlhandler");
connect and open the sqlite3
sqlHandler.openDB('./resource/SYS_FILE.db') ; // param : the path of your db
operations
sqlHandler.findAll(function (rows) { // find all records form the db data = rows ; console.log(data) ; }) ;
......