Skip to content
Advertisement

Variables in Sqlite execution when being passed into a function (Python3)

For a while I have been looking at how to read/write to a sqlite database from different threads, I found lots of answers and documents describing what needed to happen however I was nowhere near able to achieve what was needed so I decided to use an existing class I found made by someone else.

Ashamed to admit but figuring out how to get this class to work has taken a few hours despite me now not knowing why however I am unable to get variables inside of the execution function

I would normally do it like this:

JavaScript

This worked fine however when I try the same thing with the multithread class it will not work (The class has a ‘select’ function which fetches and returns the data, which was the only way I have been able to fetch data from the database, however the execute function has the exact same issue) (I also tried this method of using variables)

JavaScript

This is the class used but I will also included the link

JavaScript

Summary I would like to be able to fetch data while in a separate thread which is possible with this class I have just not been able to include variables at any stage

Credit https://gist.github.com/User001501/3053f26100ddf281600668fed347e518

Advertisement

Answer

The method execute receive a single parameter.

Looks like you can use the string named placeholders like

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement