@mayahq/maya-red-node-postgres

1.0.1 • Public • Published

@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 - PostgreSQL Node, or run the following command in your Node-RED user directory - typically ~/.node-red

npm i @mayahq/maya-red-node-postgres

Usage

Allows basic access to a Postgres 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

Readme

Keywords

Package Sidebar

Install

npm i @mayahq/maya-red-node-postgres

Weekly Downloads

1

Version

1.0.1

License

Apache-2.0

Unpacked Size

27.5 kB

Total Files

10

Last publish

Collaborators

  • shubham_root
  • dush-t