UNPKG
promise-mysql
Version:
beta (4.0.0-beta.0)
latest (5.2.0)
5.2.0
5.1.0
5.0.4
5.0.3
5.0.2
5.0.1
5.0.0
4.1.4
4.1.3
4.1.2
4.1.1
4.1.0
4.0.4
4.0.3
4.0.2
4.0.1
4.0.0
4.0.0-beta.0
3.3.2
3.3.1
3.3.0
3.2.1
3.2.0
3.1.5
3.1.4
3.1.3
3.1.2
3.1.1
3.1.0
3.0.2
3.0.1
3.0.0
2.0.0
1.3.2
1.3.1
1.3.0
1.2.0
1.1.1
1.1.0
1.0.0
0.1.2
0.1.1
0.1.0
0.0.2
0.0.1
A bluebird wrapper for node-mysql
github.com/lukeb-uk/node-promise-mysql
lukeb-uk/node-promise-mysql
promise-mysql
/
lib
/
poolConnection.js
14 lines
(10 loc)
•
265 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const
Connection
=
require
(
'./connection.js'
);
class
poolConnection
extends
Connection
{
constructor
(
config, _connection
) {
super
(config, _connection); }
release
(
) {
this
.
connection
.
release
(); } }
module
.
exports
= poolConnection;