diff --git a/storage/sqlite/locales/en-US/sqlite.html b/storage/sqlite/locales/en-US/sqlite.html index 0a8e69b2..1bd2becf 100644 --- a/storage/sqlite/locales/en-US/sqlite.html +++ b/storage/sqlite/locales/en-US/sqlite.html @@ -7,7 +7,7 @@
SQL Type Batch without response uses db.exec which runs all SQL statements in the provided string. No result rows are returned.
When using Via msg.topic or Batch without response msg.topic
must hold the query for the database.
When using Via msg.topic, parameters can be passed in the query using a When using Normal or Prepared Statement, the query must be entered in the node config.msg.payload
array. Ex:
- msg.topic = `INSERT INTO test (name, surname) VALUES ($name, $surname)`
+ msg.topic = `INSERT INTO table (name, surname) VALUES ($name, $surname)`
msg.payload = ["John", "Smith"]
return msg;