mirror of
https://github.com/knex/knex.git
synced 2025-07-13 12:00:55 +00:00
16 lines
271 B
JavaScript
16 lines
271 B
JavaScript
// MySQL Pool
|
|
// ------
|
|
module.exports = function(client) {
|
|
|
|
var inherits = require('inherits');
|
|
var Pool = require('../../pool');
|
|
|
|
function Pool_MySQL() {
|
|
this.client = client;
|
|
Pool.apply(this, arguments);
|
|
}
|
|
inherits(Pool_MySQL, Pool);
|
|
|
|
client.Pool = Pool_MySQL;
|
|
|
|
}; |