-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmysql.js
74 lines (57 loc) · 1.54 KB
/
mysql.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
const mysql = require('mysql');
const util = require('util')
module.exports = class MySql {
/**
* Construct this mysql connection instance
* Undefined values may be replaced with defaults
*
* @param host mysql host
* @param user mysql user
* @param database mysql database
* @param password mysql password
*/
constructor(config) {
this.connectionConfig = config;
}
/**
* Create a single connection
*
* @param promise Bolean, to forse a promise on the return
*/
connect(promise, mgmt) {
let connection = null;
connection = mysql.createConnection(this.connectionConfig);
connection.connect(function(err) {
if(err) {
console.log(err)
}
if(mgmt === true){
connection.end()
}
});
if(promise === true){
connection.query = util.promisify(connection.query)
}
return connection;
}
/**
* Create a pool connection
*
* @param promise Bolean, to forse a promise on the return
*/
pool(promise) {
let pool = null;
pool = mysql.createPool(this.connectionConfig);
pool.getConnection((err, connection) => {
if (err) {
console.log(err)
}
if (connection) connection.release()
return
})
if(promise === true){
pool.query = util.promisify(pool.query)
}
return pool;
}
}