node-red-contrib-connectionmanager
Advanced tools
Comparing version 0.0.4 to 0.0.5
@@ -761,7 +761,5 @@ const logger = new (require("node-red-contrib-logger"))("Connection Manager"); | ||
translateSQL:function(sql) { | ||
let r=""; | ||
sql.split('?').forEach((e,i)=>r+=e+"$"+(i+1)); | ||
return r.slice(0, -2); | ||
return sql.split('?').reduce((a,c,i)=>a+="$"+(i+1)+c);; | ||
} | ||
}) | ||
}; |
{ | ||
"name": "node-red-contrib-connectionmanager", | ||
"version": "0.0.4", | ||
"version": "0.0.5", | ||
"description": "Node-RED implements generalised connections manager.", | ||
@@ -5,0 +5,0 @@ "dependencies": { |
@@ -130,2 +130,4 @@ # [node-red-contrib-connectionmanager][2] | ||
0.0.5 fix bug with postgresql when parameters > 9. | ||
0.0.4 fix bug on statement. | ||
@@ -132,0 +134,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
413619
150
2051