Dexie.transaction()-(old-version)
Since version 0.9.8 a new transaction style was introduced. The API is still backward compatible with the documentation on this page but it is encourage to migrate your code according to the new version of Dexie.transaction()
Syntax
Parameters
mode : String
"r" = readonly or "rw" = readwrite
table : Table
Object store to include in transaction. Pick it from db.[tablename].
table2 : Table
-- " --
tableN, ... : Table
-- " --
callback : Function
function (table, table2, tableN, ..., transaction) {...}
Callback Parameters
table2
-- " --
tableN, ...
-- " --
transaction : Transaction
Return Value
Promise