Dexie.table()
Syntax
db.table(storeName)
Parameters
| storeName : String | The name of the store to retrieve |
Return Value
Remarks
Returns a Table instance representing the object store with the given name. If database is opened with a defined schema (using db.version().stores()), this method can be called before database has been opened, but if not defining a schema, tables are not accessible until database has been successfully opened. See Dexie.open()