1.0.11 • Published 5 years ago

pool-sql v1.0.11

Weekly downloads
1
License
ISC
Repository
-
Last release
5 years ago

pool-sql

wrap node mysql to make more reliable connections using pools

var index = require("./pool-sql.js");
var fs = require("fs");
var config = JSON.parse(fs.readFileSync("./config.json","utf8"));
var pool = new index({"host":config.host,"username":config.username,"password":config.password});
var mysqlCommand = pool.mysqlCommand;
mysqlCommand("select * from db.table where something=true;",function(err,res,fields){
	//not sure what fields are
	if(typeof err="undefined")console.log(err);
	else{

	}
});
1.0.11

5 years ago

1.0.10

5 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.2

5 years ago