You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I find out that msg.topic is mentioned in the readMe of alasql node, but it isn't used in the code. A made a change on the code at my local. I changed in the readMe msg.topic to msg.query because msg.topic used bz several another nodes. And I changed the node-red-contrib-alasql.js line 9 from var sql = this.query || 'SELECT * FROM ?'; to var sql = this.query || msg.query || 'SELECT * FROM ?'; to use this variable. It works fine for me. Please let me know how can it be released?
Thank you very much, Gábor
The text was updated successfully, but these errors were encountered:
Hi!
I find out that
msg.topic
is mentioned in the readMe of alasql node, but it isn't used in the code. A made a change on the code at my local. I changed in the readMemsg.topic
tomsg.query
becausemsg.topic
used bz several another nodes. And I changed the node-red-contrib-alasql.js line 9 fromvar sql = this.query || 'SELECT * FROM ?';
tovar sql = this.query || msg.query || 'SELECT * FROM ?';
to use this variable. It works fine for me. Please let me know how can it be released?Thank you very much, Gábor
The text was updated successfully, but these errors were encountered: