@bkmj/node-red-contrib-odbcmj 1.5.0 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/odbc.js +1 -1
- package/package.json +1 -1
package/odbc.js
CHANGED
|
@@ -95,7 +95,7 @@ module.exports = function(RED) {
|
|
|
95
95
|
// Handle cases where the query is provided in the message
|
|
96
96
|
if (msg?.query) {
|
|
97
97
|
if (this.queryString) {
|
|
98
|
-
|
|
98
|
+
this.log('Warning. The query defined in the node configuration was overwritten by msg.config.');
|
|
99
99
|
}
|
|
100
100
|
this.queryString = msg.query;
|
|
101
101
|
} else if (msg?.payload) {
|