0.1.0 • Published 9 years ago
mysql-client-pool v0.1.0
mysql-client-pool
Mysql client pool which support promise api and auto manage connection pool.
Install
$ npm i --save mysql-client-pool
Usage
var MysqlClientPool = require('mysql-client-pool');
var options = {};
var mysqlClientPool = new MysqlClientPool(options);
var sql = 'select * from users limit 0,20';
mysqlClientPool.query(sql).then(function (results) {
//
});
Options
todo
Licences
0.1.0
9 years ago