2014-09-22 21:50:25 +02:00
node-red-node-sqlite
====================
2014-07-27 17:09:50 +02:00
2014-07-04 17:12:00 +02:00
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-07-04 17:12:00 +02:00
2018-12-19 20:37:13 +01:00
npm i --unsafe-perm node-red-node-sqlite
2014-07-04 17:12:00 +02:00
2019-04-25 13:40:49 +02:00
**Note**: the install process requires a compile of native code. This can take 15-20 minutes on
devices like a Raspberry Pi - please be prepared to wait a long time. Also if node.js is upgraded at any point you will need to rebuild the native part manually, for example.
cd ~/.node-red
npm rebuild
2014-07-04 17:12:00 +02:00
Usage
-----
2014-07-27 17:09:50 +02:00
Allows basic access to a Sqlite database.
2019-10-12 12:37:44 +02:00
This node uses the **db.all** operation against the configured database.
2016-03-02 14:27:22 +01:00
This does allow INSERTS, UPDATES and DELETES.
2014-07-27 17:09:50 +02:00
By it's very nature it is SQL injection... so *be careful* out there...
2019-10-12 12:37:44 +02:00
`msg.topic` must hold the *query* for the database, and the result is returned in `msg.payload` .
2014-07-27 17:09:50 +02:00
Typically the returned payload will be an array of the result rows, (or an error).
2019-10-12 12:37:44 +02:00
You can load sqlite extensions by inputting a `msg.extension` property containing the full path and filename.
2018-08-22 14:58:55 +02:00
2014-07-27 17:09:50 +02:00
The reconnect timeout in milliseconds can be changed by adding a line to **settings.js**
sqliteReconnectTime: 20000,