Since SQLite does not allow nested transactions. I was wondering does it make sense to open up a new connection for every transaction so I can have concurrent transactions in Expo?
Sounds a bit overkill, but it appears to be the only option I would have at the moment when I want to do multiple read/update operations which are independent of each other.
In addition, if I do that, I am thinking I would be able to make my transactions "DEFERED" rather than "IMMEDIATE".
Am I missing a less drastic option?