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

mysql test before releasing connection

This commit is contained in:
Dave Conway-Jones 2021-03-14 09:05:23 +00:00
parent e674f9ad97
commit c2613cfeb0
No known key found for this signature in database
GPG Key ID: 88BA2B8A411BE9FF
2 changed files with 5 additions and 3 deletions

View File

@ -141,7 +141,7 @@ module.exports = function(RED) {
}.bind(this));
};
}
node.mydbConfig.pool.query(msg.topic, bind, function(err, rows) {
node.mydbConfig.connection.query(msg.topic, bind, function(err, rows) {
if (err) {
status = {fill:"red",shape:"ring",text:"Error: "+err.code};
node.status(status);
@ -156,7 +156,9 @@ module.exports = function(RED) {
status = {fill:"green",shape:"dot",text:"OK"};
node.status(status);
}
//node.mydbConfig.connection.release();
if (node.mydbConfig.pool._freeConnections.indexOf(node.mydbConfig.connection) === -1) {
node.mydbConfig.connection.release();
}
});
}
else {

View File

@ -1,6 +1,6 @@
{
"name": "node-red-node-mysql",
"version": "0.1.2",
"version": "0.1.3",
"description": "A Node-RED node to read and write to a MySQL database",
"dependencies": {
"mysql": "^2.18.1"