mysql.js
3.39 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
const mysql = require('mysql');
const _ = require('lodash');
class SqlHelper {
constructor(database) {
this.config = global.yoho.config.mysql;
this.logger = global.yoho.logger;
database = database || 'mysql';
this.createPool(database);
}
createPool(database) {
this.pool = mysql.createPool(Object.assign(this.config.connect, {
database
}));
}
getConnection() {
return new Promise((resolve, reject) => {
this.pool.getConnection((connErr, connection) => {
if (connErr) {
this.logger.error(connErr);
reject(connErr);
} else {
resolve(connection);
}
});
});
}
baseConenction(sql) {
return new Promise((resolve, reject) => {
this.getConnection().then(connection => {
connection.query(sql, (queryErr, result) => {
connection.release();
if (queryErr) {
this.logger.error(queryErr);
reject(queryErr);
} else {
resolve(result);
}
});
});
});
}
query(sql) {
return this.baseConenction(sql);
}
delete(sql) {
return this.baseConenction(sql).then(result => {
return result.affectedRows;
});
}
update(sql) {
return this.baseConenction(sql).then(result => {
return result.changedRows;
});
}
insert(sql) {
return this.baseConenction(sql).then(result => {
return result.insertId;
});
}
execute(sql) {
return this.baseConenction(sql);
}
transaction(sqls) {
return new Promise((resolve, reject) => {
this.getConnection().then(connection => {
let promises = _.map(sqls, sql => {
return new Promise((res, rej) => {
connection.query(sql, (queryErr, result) => {
if (queryErr) {
connection.rollback();
this.logger.error(queryErr);
rej(queryErr);
} else {
res(result);
}
});
});
});
Promise.all(promises).then(results => {
connection.commit(err => {
if (err) {
connection.rollback(() => {
connection.release();
});
reject();
} else {
connection.release();
resolve(results);
}
});
}, () => {
reject();
});
});
});
}
changeDatabase(database) {
return new Promise(resolve => {
this.pool.end(() => {
this.createPool(database);
resolve();
});
});
}
close() {
this.pool.end(() => {
this.logger.log('end');
});
}
}
module.exports = SqlHelper;