I have googled quite a bit and cannot find out whether I should be able to access the same websql database from the main ui thread and a web worker.
I am using the async api since I believe this is the only API that has been implemented for both the web worker and the main ui thread.
Basically I get issues when both threads execute a transaction concurrently against the same database. SQLite supports multiple threads accessing a db in a controlled way so it should be possible.
Has anyone done this?