Hi,
I am using SQlite to keep some data, where as while passing my query as topic an error is appearing saying ' Error: SQLITE_ERROR: no such table: History_Stop'. I am using a windows 10 system and node red is running on Docker.
I have cross checked mulitple times table name and other things.
Hi hardillb,
The database is not mounted on the docker.
For docker path not cleared to me what you talking about.
I have never used docker, my node red was already hosted by someone else.
Docker containers have no access to files on the host system unless you explicitly share them with the container (and even then you will access them using a unix style path).
So the reason it says it can't find the table is because it has created a new empty SQLite database inside the container which contains no tables.
If the Node-RED images is being remotely hosted in somebody else's Docker environment then it definitely will not have any access to the SQLite file on your local machine.