1
0
mirror of https://github.com/node-red/node-red-nodes.git synced 2023-10-10 13:36:58 +02:00

Update 68-mysql.js

This commit is contained in:
Dave Conway-Jones 2021-03-13 13:59:00 +00:00
parent 2a4e434406
commit 9e7701dc33
No known key found for this signature in database
GPG Key ID: 88BA2B8A411BE9FF

View File

@ -87,7 +87,7 @@ module.exports = function(RED) {
if (this.tick) { clearTimeout(this.tick); } if (this.tick) { clearTimeout(this.tick); }
if (this.check) { clearInterval(this.check); } if (this.check) { clearInterval(this.check); }
node.connected = false; node.connected = false;
node.connection.release(); // node.connection.release();
node.emit("state"," "); node.emit("state"," ");
node.pool.end(function(err) { done(); }); node.pool.end(function(err) { done(); });
}); });
@ -141,7 +141,7 @@ module.exports = function(RED) {
}.bind(this)); }.bind(this));
}; };
} }
node.mydbConfig.connection.query(msg.topic, bind, function(err, rows) { node.mydbConfig.pool.query(msg.topic, bind, function(err, rows) {
if (err) { if (err) {
status = {fill:"red",shape:"ring",text:"Error: "+err.code}; status = {fill:"red",shape:"ring",text:"Error: "+err.code};
node.status(status); node.status(status);
@ -156,7 +156,7 @@ module.exports = function(RED) {
status = {fill:"green",shape:"dot",text:"OK"}; status = {fill:"green",shape:"dot",text:"OK"};
node.status(status); node.status(status);
} }
node.mydbConfig.connection.release(); //node.mydbConfig.connection.release();
}); });
} }
else { else {