mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
parent
1f2a25637b
commit
c6f37d19a8
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "node-red-node-sqlite",
|
"name": "node-red-node-sqlite",
|
||||||
"version": "1.0.0",
|
"version": "1.0.1",
|
||||||
"description": "A sqlite node for Node-RED",
|
"description": "A sqlite node for Node-RED",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"sqlite3": "^5.0.2"
|
"sqlite3": "^5.0.2"
|
||||||
|
@ -53,7 +53,10 @@ module.exports = function(RED) {
|
|||||||
if (node.sqlquery == "msg.topic") {
|
if (node.sqlquery == "msg.topic") {
|
||||||
if (typeof msg.topic === 'string') {
|
if (typeof msg.topic === 'string') {
|
||||||
if (msg.topic.length > 0) {
|
if (msg.topic.length > 0) {
|
||||||
bind = Array.isArray(msg.payload) ? msg.payload : [];
|
if (Array.isArray(msg.payload)) {
|
||||||
|
if (msg.payload.length === (msg.topic.split('$').length - 1) ) { bind = msg.payload; }
|
||||||
|
else { bind = []; }
|
||||||
|
}
|
||||||
node.mydbConfig.db.all(msg.topic, bind, function(err, row) {
|
node.mydbConfig.db.all(msg.topic, bind, function(err, row) {
|
||||||
if (err) { node.error(err,msg); }
|
if (err) { node.error(err,msg); }
|
||||||
else {
|
else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user