node-red-nodes/storage/sqlite/README.md

31 lines
805 B
Markdown
Raw Normal View History

2014-09-22 21:50:25 +02:00
node-red-node-sqlite
====================
A Node-Red node to read and write a local sqlite database.
Install
-------
2016-03-02 14:27:22 +01:00
Run the following command in your Node-RED user directory - typically `~/.node-red`
2014-09-22 21:50:25 +02:00
npm install node-red-node-sqlite
Usage
-----
Allows basic access to a Sqlite database.
2016-03-02 14:27:22 +01:00
This node uses the <b>db.all</b> 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...
2016-03-02 14:27:22 +01:00
`msg.topic` must hold the <i>query</i> 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,