We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d750a5 commit f9b4d2eCopy full SHA for f9b4d2e
storage/sqlite/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "node-red-node-sqlite",
3
- "version": "1.0.1",
+ "version": "1.0.2",
4
"description": "A sqlite node for Node-RED",
5
"dependencies": {
6
"sqlite3": "^5.0.2"
storage/sqlite/sqlite.js
@@ -50,6 +50,7 @@ module.exports = function(RED) {
50
var bind = [];
51
52
var doQuery = function(msg) {
53
+ bind = []
54
if (node.sqlquery == "msg.topic") {
55
if (typeof msg.topic === 'string') {
56
if (msg.topic.length > 0) {
0 commit comments