Dexie.SubTransactionError
Inheritance Hierarchy
Dexie.DexieError
Dexie.SubTransactionError
Description
A call to db.transaction() with a mode or set of tables that was not compatible with the currently ongoing transaction. For example:
To work around this error, make sure that the parent transaction includes all tables that subtransactions may include and that if subtransactions require 'rw' mode, use 'rw' mode also in parent transactions.
If you didn't have a parent transaction, but your transaction was initiated in your Collection.each() or Collection.modify() callback, you should surround the call to Collection.each() / Collection.modify() with a transaction block, including the correct mode and tables to include.
Sample using Promise.catch()
Sample: switch(error.name)
Properties
message
Detailed message
inner?
Inner exception instance (if any)
stack
Can be present if the error was thrown. If signaled, there wont be any call stack.