Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

node-red-node-mysql

Package Overview
Dependencies
Maintainers
2
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-red-node-mysql - npm Package Compare versions

Comparing version 0.1.4 to 0.1.5

node-red-node-mysql-0.1.5.tgz

9

68-mysql.js

@@ -44,3 +44,5 @@

multipleStatements: true,
connectionLimit: 25,
connectionLimit: 50,
timeout: 30000,
connectTimeout: 30000,
charset: node.charset

@@ -87,3 +89,3 @@ });

this.on('close', function (done) {
this.on('close', function(done) {
if (this.tick) { clearTimeout(this.tick); }

@@ -156,2 +158,5 @@ if (this.check) { clearInterval(this.check); }

}
else if ((rows.constructor.name === "OkPacket") || (rows.constructor.name === "Array")) {
msg.payload = rows.map(v => Object.assign({}, v));
}
else { msg.payload = rows; }

@@ -158,0 +163,0 @@ node.send(msg);

{
"name": "node-red-node-mysql",
"version": "0.1.4",
"version": "0.1.5",
"description": "A Node-RED node to read and write to a MySQL database",

@@ -5,0 +5,0 @@ "dependencies": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc