From c2f7cb7bc677e4219aabf68e39e6c48779573d55 Mon Sep 17 00:00:00 2001 From: unborn-andy <93290787+unborn-andy@users.noreply.github.com> Date: Tue, 4 Jan 2022 22:41:08 +0200 Subject: [PATCH] Update README.md --- storage/sqlite/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/sqlite/README.md b/storage/sqlite/README.md index 721ce0b2..3cbb7dd7 100644 --- a/storage/sqlite/README.md +++ b/storage/sqlite/README.md @@ -37,7 +37,7 @@ When using Via msg.topic or Batch without response msg.topic must hold the query When using msg.topic, parameters can be passed in the query using a 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; ```