diff --git a/storage/sqlite/locales/en-US/sqlite.html b/storage/sqlite/locales/en-US/sqlite.html index 1bd2becf..3c7f51c0 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 table (name, surname) VALUES ($name, $surname)`
+ msg.topic = `INSERT INTO user_table (name, surname) VALUES ($name, $surname)`
msg.payload = ["John", "Smith"]
return msg;