node-red-nodes/storage/sqlite
dceejay 87a8814fe0 Fix for sqlite not retrying to open database (and crashing)
Fix for #106
2015-03-18 08:47:09 +00:00
..
icons Realign sqlite files to be similar to other nodes 2014-07-25 10:10:06 +01:00
LICENSE Add sqlite node to node-red-nodes (and npm) 2014-07-04 16:12:00 +01:00
README.md fix sqlite node typos 2014-09-22 20:50:25 +01:00
package.json Fix for sqlite not retrying to open database (and crashing) 2015-03-18 08:47:09 +00:00
sqlite.html Add bind capability to sqlite and mysql nodes 2015-01-26 10:57:13 +00:00
sqlite.js Fix for sqlite not retrying to open database (and crashing) 2015-03-18 08:47:09 +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 the root directory of your Node-RED install

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,