1.0.10 • Published 1 year ago

@mayahq/maya-red-node-mysql v1.0.10

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
1 year ago

@mayahq/maya-red-node-mysql

A fork of Node-RED's storage/mysql node to read and write to a MySQL database.

Install

Either use the Maya's Module Install - MySQL Node, or run the following command in your Node-RED user directory - typically ~/.node-red

npm i @mayahq/maya-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 its very nature it allows SQL injection... so be careful out there...

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

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,

The timezone can be set like GMT, EST5EDT, UTC, etc.

The charset defaults to the "old" Mysql 3 byte UTF. If you need support for emojis etc then use UTF8MB4.

Preparing Queries

msg.payload=[24, 'example-user'];
msg.payload.query="INSERT INTO users (`userid`, `username`) VALUES (?, ?);"
return msg;

with named parameters:

msg.payload={}
msg.payload.values.userToChange=42;
msg.payload.values.newUsername="example-user";
msg.topic="INSERT INTO users (`userid`, `username`) VALUES (:userToChange, :newUsername) ON DUPLICATE KEY UPDATE `username`=:newUsername;"
return msg;
msg.payload.renewSchema = true;

to update the schema infromation of the database provided the supplied user credentials has access to the schema information. This returns msg.payload.schema with the create schema information of all tables in the database.

Documentation

Documentation of the used Node.js package

1.0.10

1 year ago

1.0.9

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.3

2 years ago