UNPKG

mysql2

Version:

fast mysql driver. Implements core protocol, prepared statements, ssl and compression in native JS

13 lines (9 loc) 328 B
'use strict'; const BasePoolConnection = require('./base/pool_connection.js'); class PoolConnection extends BasePoolConnection { promise(promiseImpl) { const PromisePoolConnection = require('./promise/pool_connection.js'); return new PromisePoolConnection(this, promiseImpl); } } module.exports = PoolConnection;