1.0.11 • Published 6 years ago

pool-sql v1.0.11

Weekly downloads
1
License
ISC
Repository
-
Last release
6 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

6 years ago

1.0.10

6 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.2

7 years ago