Transaction.table() - zuki/Dexie.js GitHub Wiki
** DEPRECATED ** This method is deprecated. Use db.table(tableName instead)
Syntax
trans.table(nameName)
Return Type
Description
Get a Table or WriteableTable instance representing one of your object stores specified in Dexie.version. Table is returned if the transaction was opened in "r" (readonly) mode. WriteableTable will be returned if the transaction was opened in "rw" (readwrite) mode. If transaction is a versionchange transaction (happens only in your registered upgraders and callbacks to on("populate"), the returned instance will be WriteableTable.
Remarks
Returned Table instance will be a singleton Table instance and will not be bound to given transaction.