node-red-nodes/storage/sqlite
Dave Conway-Jones 3decff0b1a
Bump sqlite node (now allows prepared statements)
2018-03-20 19:08:38 +00:00
..
icons Realign sqlite files to be similar to other nodes 2014-07-25 10:10:06 +01:00
LICENSE Update licenses and packages for all nodes 2016-11-06 20:26:19 +00:00
README.md update storage nodes info style 2016-03-02 13:27:52 +00:00
package.json Bump sqlite node (now allows prepared statements) 2018-03-20 19:08:38 +00:00
sqlite.html Added a few SQL modes (#360) 2018-03-20 19:04:23 +00:00
sqlite.js Added a few SQL modes (#360) 2018-03-20 19:04:23 +00:00

README.md

node-red-node-sqlite

A Node-Red node to read and write a local sqlite database.

Install

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

npm install node-red-node-sqlite

Usage

Allows basic access to a Sqlite database.

This node uses the db.all operation against the configured database. This does allow INSERTS, UPDATES and DELETES.

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

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, (or an error).

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

sqliteReconnectTime: 20000,