sqlhandler
v0.0.6
Published
connect to the sqlite3 and simple curd opertaion
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 dboperations
sqlHandler.findAll(function (rows) { // find all records form the db data = rows ; console.log(data) ; }) ;
......
