How to use a prepared query inside a transaction?
I have a prepared query like this:
I want to use this inside a db.transaction(async (tx) => { ... }) block.
what's the correct way to use .prepare() inside a transaction?
I want to use this inside a db.transaction(async (tx) => { ... }) block.
what's the correct way to use .prepare() inside a transaction?