> Easy, you use `journal_mode` set to `WAL` when you connect to the sqlite database.
and set isolation level and check_same_thread and PRAGMA synchronous and then put all queries in retry loops because the DB is maybe locked https://sqlite.org/wal.html#sometimes_queries_return_sqlite_...
I wasted so much time trying to get multiple sqlite queries running at the same time
You were trying to write at the same time right?
> Easy, you use `journal_mode` set to `WAL` when you connect to the sqlite database.
and set isolation level and check_same_thread and PRAGMA synchronous and then put all queries in retry loops because the DB is maybe locked https://sqlite.org/wal.html#sometimes_queries_return_sqlite_...
I wasted so much time trying to get multiple sqlite queries running at the same time