dockerized_openAger/nodered/rootfs/data/node_modules/node-red-node-mysql
valki 664c6d8ca3 Intial Commit 2020-10-17 18:42:50 +02:00
..
68-mysql.html Intial Commit 2020-10-17 18:42:50 +02:00
68-mysql.js Intial Commit 2020-10-17 18:42:50 +02:00
LICENSE Intial Commit 2020-10-17 18:42:50 +02:00
README.md Intial Commit 2020-10-17 18:42:50 +02:00
package.json Intial Commit 2020-10-17 18:42:50 +02:00

README.md

node-red-node-mysql

A Node-RED node to read and write to a MySQL database.

Install

Run the following command in your Node-RED user directory - typically ~/.node-red

npm install node-red-node-mysql

Usage

Allows basic access to a MySQL database.

This node uses the query operation against the configured database. This does allow both INSERTS and DELETES.

By it's very nature it allows SQL injection... so be careful out there...

The msg.topic must hold the query for the database, and the result is returned in msg.payload.

Typically the returned payload will be an array of the result rows.

If nothing is found for the key then null is returned.

The reconnect retry timeout in milliseconds can be changed by adding a line to settings.js

mysqlReconnectTime: 30000,