-
-
Notifications
You must be signed in to change notification settings - Fork 641
Table
The Table class represents an IDBObjectStore.
- Table
The name of the object store represented by this Table instance.
The table schema of this object store.
Atomic CRUD hook called when object is about to be created in db.
Atomic CRUD hook called when object has been read from db and is about to be delivered to caller.
Atomic CRUD hook called when object is about to be modified in db.
Atomic CRUD hook called when object is about to be deleted from db.
Retrieve object by primary key.
Retrieve objects using a query.
Apply javascript filter on all items in the object store
Count all objects.
Return a Collection ordered by primary key, where the first N items in the table are ignored.
Return a Collection ordered by primary key, limited to N items.
Iterate all objects in store.
Get an array containing all objects in store.
Get a Collection containing all objects in store.
Returns a Collection instance ordered by given index.
Returns a Collection instance with reversed order of the primary key.
Map this table to javascript constructor function.
Define a javascript constructor function and map to this table.
Dexie.js - minimalistic and bullet proof indexedDB library