-
-
Notifications
You must be signed in to change notification settings - Fork 641
WriteableTable.bulkAdd()
David Fahlander edited this page Mar 11, 2016
·
22 revisions
Adds objects to the object store.
table.bulkAdd(items)
items | Array of objects to add |
Add given array of objects to store.
If you have a large number of objects to add to the object store, bulkAdd() is a little faster than doing add() in a loop. The object store needs to have inbound keys in order for bulkAdd to work - i.e. you're table schema must not start with an empty key.
var db = new Dexie("test");
db.version(1).stores({
tableWithInboundKeys: "id,x,y,z",
tableWithoutInboundKeys: ",x,y,z"
});
Dexie.js - minimalistic and bullet proof indexedDB library