The IDBObjectStore
interface of the IndexedDB API represents an object store in a database. Records within an object store are sorted according to their keys. This sorting enables fast insertion, look-up, and ordered retrieval.
Instance properties
IDBObjectStore.indexNames
Read only
-
A list of the names of indexes on objects in this object store.
IDBObjectStore.keyPath
Read only
-
The key path of this object store. If this attribute is null
, the application must provide a key for each modification operation.
-
IDBObjectStore.name
-
The name of this object store.
IDBObjectStore.transaction
Read only
-
The IDBTransaction
object to which this object store belongs.
IDBObjectStore.autoIncrement
Read only
-
The value of the auto increment flag for this object store.
Instance methods
-
IDBObjectStore.add()
-
Returns an IDBRequest
object, and, in a separate thread, creates a structured clone of the value
, and stores the cloned value in the object store. This is for adding new records to an object store.
-
IDBObjectStore.clear()
-
Creates and immediately returns an IDBRequest
object, and clears this object store in a separate thread. This is for deleting all current records out of an object store.
-
IDBObjectStore.count()
-
Returns an IDBRequest
object, and, in a separate thread, returns the total number of records that match the provided key or IDBKeyRange
. If no arguments are provided, it returns the total number of records in the store.
-
IDBObjectStore.createIndex()
-
Creates a new index during a version upgrade, returning a new IDBIndex
object in the connected database.
-
IDBObjectStore.delete()
-
returns an IDBRequest
object, and, in a separate thread, deletes the store object selected by the specified key. This is for deleting individual records out of an object store.
-
IDBObjectStore.deleteIndex()
-
Destroys the specified index in the connected database, used during a version upgrade.
-
IDBObjectStore.get()
-
Returns an IDBRequest
object, and, in a separate thread, returns the store object store selected by the specified key. This is for retrieving specific records from an object store.
-
IDBObjectStore.getKey()
-
Returns an IDBRequest
object, and, in a separate thread retrieves and returns the record key for the object in the object stored matching the specified parameter.
-
IDBObjectStore.getAll()
-
Returns an IDBRequest
object retrieves all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.
-
IDBObjectStore.getAllKeys()
-
Returns an IDBRequest
object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.
-
IDBObjectStore.index()
-
Opens an index from this object store after which it can, for example, be used to return a sequence of records sorted by that index using a cursor.
-
IDBObjectStore.openCursor()
-
Returns an IDBRequest
object, and, in a separate thread, returns a new IDBCursorWithValue
object. Used for iterating through an object store by primary key with a cursor.
-
IDBObjectStore.openKeyCursor()
-
Returns an IDBRequest
object, and, in a separate thread, returns a new IDBCursor
. Used for iterating through an object store with a key.
-
IDBObjectStore.put()
-
Returns an IDBRequest
object, and, in a separate thread, creates a structured clone of the value
, and stores the cloned value in the object store. This is for updating existing records in an object store when the transaction's mode is readwrite
.
Example
This example shows a variety of different uses of object stores, from updating the data structure with IDBObjectStore.createIndex
inside an onupgradeneeded
function, to adding a new item to our object store with IDBObjectStore.add
. For a full working example, see our To-do Notifications app (view example live).
const DBOpenRequest = window.indexedDB.open("toDoList", 4);
DBOpenRequest.onsuccess = (event) => {
note.innerHTML += "<li>Database initialized.</li>";
db = DBOpenRequest.result;
};
DBOpenRequest.onupgradeneeded = (event) => {
const db = event.target.result;
db.onerror = (event) => {
note.innerHTML += "<li>Error loading database.</li>";
};
const objectStore = db.createObjectStore("toDoList", {
keyPath: "taskTitle",
});
objectStore.createIndex("hours", "hours", { unique: false });
objectStore.createIndex("minutes", "minutes", { unique: false });
objectStore.createIndex("day", "day", { unique: false });
objectStore.createIndex("month", "month", { unique: false });
objectStore.createIndex("year", "year", { unique: false });
objectStore.createIndex("notified", "notified", { unique: false });
note.innerHTML += "<li>Object store created.</li>";
};
const newItem = [
{
taskTitle: "Walk dog",
hours: 19,
minutes: 30,
day: 24,
month: "December",
year: 2013,
notified: "no",
},
];
const transaction = db.transaction(["toDoList"], "readwrite");
transaction.oncomplete = (event) => {
note.innerHTML += "<li>Transaction completed.</li>";
};
transaction.onerror = (event) => {
note.innerHTML +=
"<li>Transaction not opened due to error. Duplicate items not allowed.</li>";
};
const objectStore = transaction.objectStore("toDoList");
const objectStoreRequest = objectStore.add(newItem[0]);
objectStoreRequest.onsuccess = (event) => {
note.innerHTML += "<li>Request successful .</li>";
};
Specifications
Browser compatibility
|
Desktop |
Mobile |
|
Chrome |
Edge |
Firefox |
Internet Explorer |
Opera |
Safari |
WebView Android |
Chrome Android |
Firefox for Android |
Opera Android |
Safari on IOS |
Samsung Internet |
IDBObjectStore |
2423–57 |
12 |
1610–16 |
10 |
15 |
8 |
≤37–574.4 |
2525–57 |
22 |
14 |
8 |
1.51.5–7.0 |
add |
23 |
12 |
10 |
10 |
15 |
8 |
4.4 |
25 |
22 |
14 |
8 |
1.5 |
autoIncrement |
23 |
79 |
10 |
10 |
15 |
8 |
4.4 |
25 |
22 |
14 |
8 |
1.5 |
clear |
23 |
12 |
10 |
10 |
15 |
8 |
4.4 |
25 |
22 |
14 |
8 |
1.5 |
count |
23 |
12 |
10 |
10 |
15 |
8 |
4.4 |
25 |
22 |
14 |
8 |
1.5 |
createIndex |
23 |
12 |
10 |
10 |
15 |
8 |
4.4 |
25 |
22 |
14 |
8 |
1.5 |
delete |
23 |
12 |
10 |
10 |
15 |
8 |
4.4 |
25 |
22 |
14 |
8 |
1.5 |
deleteIndex |
23 |
12 |
10 |
10 |
15 |
8 |
4.4 |
25 |
22 |
14 |
8 |
1.5 |
get |
23 |
12 |
10 |
10 |
15 |
8 |
4.4 |
25 |
22 |
14 |
8 |
1.5 |
getAll |
48 |
79 |
44 |
No |
35 |
10.1 |
48 |
48 |
48 |
35 |
10.3 |
5.0 |
getAllKeys |
48 |
79 |
44 |
No |
35 |
10.1 |
48 |
48 |
48 |
35 |
10.3 |
5.0 |
getKey |
48 |
79 |
51 |
No |
45 |
10.1 |
48 |
48 |
58 |
43 |
10.3 |
5.0 |
index |
23 |
12 |
10 |
10 |
15 |
8 |
4.4 |
25 |
22 |
14 |
8 |
1.5 |
indexNames |
23 |
12 |
10 |
10 |
15 |
8 |
4.4 |
25 |
22 |
14 |
8 |
1.5 |
keyPath |
23 |
12 |
10 |
10 |
15 |
8 |
4.4 |
25 |
22 |
14 |
8 |
1.5 |
name |
23 |
12 |
10 |
10 |
15 |
8 |
4.4 |
25 |
22 |
14 |
8 |
1.5 |
openCursor |
23 |
12 |
10 |
10 |
15 |
8 |
4.4 |
25 |
22 |
14 |
8 |
1.5 |
openKeyCursor |
23 |
79 |
44 |
10 |
15 |
10.1 |
4.4 |
25 |
44 |
14 |
10.3 |
1.5 |
put |
23 |
12 |
10 |
10 |
15 |
8 |
4.4 |
25 |
22 |
14 |
8 |
1.5 |
transaction |
23 |
12 |
10 |
10 |
15 |
8 |
4.4 |
25 |
22 |
14 |
8 |
1.5 |
worker_support |
23 |
12 |
37 |
10 |
15 |
10 |
4.4 |
25 |
37 |
14 |
10 |
1.5 |
See also