mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
807 B
807 B
node-red-contrib-sqlite
A Node-Red node to read and write a local sqlite database.
Install
Run the following command in the root directory of your Node-RED install
npm install node-red-contrib-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,