IDBIndex interface of the IndexedDB API provides asynchronous access to an index in a database. An index is a kind of object store for looking up records in another object store, called the referenced object store. You use this interface to retrieve data.
You can retrieve records in an object store through the primary key or by using an index. An index lets you look up records in an object store using properties of the values in the object stores records other than the primary key
The index is a persistent key-value storage where the value part of its records is the key part of a record in the referenced object store. The records in an index are automatically populated whenever records in the referenced object store are inserted, updated, or deleted. Each record in an index can point to only one record in its referenced object store, but several indexes can reference the same object store. When the object store changes, all indexes that refers to the object store are automatically updated.
You can grab a set of keys within a range. To learn more, see IDBKeyRange.
IDBIndex.isAutoLocale Read only
Boolean indicating whether the index had a locale value of auto specified upon its creation (see createIndex()'s optionalParameters.)IDBIndex.locale Read only
en-US, or pl) if it had a locale value specified upon its creation (see createIndex()'s optionalParameters.)IDBIndex.nameIDBIndex.objectStore Read only
IDBIndex.keyPath Read only
IDBIndex.multiEntry Read only
true, there is one record in the index for each item in an array of keys. If false, then there is one record for each key that is an array.IDBIndex.unique Read only
true, this index does not allow duplicate values for a key.Inherits from: EventTarget
IDBIndex.count()IDBRequest object, and in a separate thread, returns the number of records within a key range.IDBIndex.get()IDBRequest object, and, in a separate thread, finds either the value in the referenced object store that corresponds to the given key or the first corresponding value, if key is an IDBKeyRange.IDBIndex.getKey()IDBRequest object, and, in a separate thread, finds either the given key or the primary key, if key is an IDBKeyRange.IDBIndex.getAll()IDBRequest object, in a separate thread, finds all matching values in the referenced object store that correspond to the given key or are in range, if key is an IDBKeyRange.IDBIndex.getAllKeys()IDBRequest object, in a separate thread, finds all matching keys in the referenced object store that correspond to the given key or are in range, if key is an IDBKeyRange.IDBIndex.openCursor()IDBRequest object, and, in a separate thread, creates a cursor over the specified key range.IDBIndex.openKeyCursor()IDBRequest object, and, in a separate thread, creates a cursor over the specified key range, as arranged by this index.In the following example we open a transaction and an object store, then get the index lName from a simple contacts database. We then open a basic cursor on the index using IDBIndex.openCursor — this works the same as opening a cursor directly on an ObjectStore using IDBObjectStore.openCursor except that the returned records are sorted based on the index, not the primary key.
Finally, we iterate through each record, and insert the data into an HTML table. For a complete working example, see our IDBIndex-example demo repo (View the example live.)
function displayDataByIndex() {
tableEntry.innerHTML = '';
var transaction = db.transaction(['contactsList'], 'readonly');
var objectStore = transaction.objectStore('contactsList');
var myIndex = objectStore.index('lName');
myIndex.openCursor().onsuccess = function(event) {
var cursor = event.target.result;
if(cursor) {
var tableRow = document.createElement('tr');
tableRow.innerHTML = '<td>' + cursor.value.id + '</td>'
+ '<td>' + cursor.value.lName + '</td>'
+ '<td>' + cursor.value.fName + '</td>'
+ '<td>' + cursor.value.jTitle + '</td>'
+ '<td>' + cursor.value.company + '</td>'
+ '<td>' + cursor.value.eMail + '</td>'
+ '<td>' + cursor.value.phone + '</td>'
+ '<td>' + cursor.value.age + '</td>';
tableEntry.appendChild(tableRow);
cursor.continue();
} else {
console.log('Entries all displayed.');
}
};
}; | Specification | Status | Comment |
|---|---|---|
| Indexed Database API The definition of 'IDBIndex' in that specification. | Recommendation | |
| Indexed Database API 2.0 The definition of 'IDBIndex' in that specification. | Recommendation |
| Desktop | ||||||
|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
| Basic support | 24
|
Yes | 16
|
10
|
15 | 7 |
| Available in workers | Yes | Yes | 37 | ? | Yes | ? |
isAutoLocale
|
No | No | 43 | No | No | No |
keyPath |
24
|
12 | 16
|
10
|
15 | 7 |
locale
|
No | No | 43 | No | No | No |
multiEntry |
24
|
? | 16
|
10
|
15 | 7 |
name |
24
|
12 | 16
|
10
|
15 | 7 |
objectStore |
24
|
12 | 16
|
10
|
15 | 7 |
unique |
24
|
12 | 16
|
10
|
15 | 7 |
count |
24
|
12 | 16
|
10
|
15 | 7 |
get |
24
|
12 | 16
|
10
|
15 | 7 |
getAll |
48 | Yes | 44
|
No | 35 | 10.1 |
getAllKeys |
48 | Yes | 44
|
No | 35 | 10.1 |
getKey |
24
|
12 | 16
|
10
|
15 | 7 |
openCursor |
24
|
12 | 16
|
10
|
15 | 7 |
openKeyCursor |
24
|
12 | 16
|
10
|
15 | 7 |
| Mobile | |||||||
|---|---|---|---|---|---|---|---|
| Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
| Basic support | Yes
|
25
|
? | 22 | 22 | 8 | Yes
|
| Available in workers | Yes | Yes | Yes | 37 | Yes | ? | Yes |
isAutoLocale
|
No | No | No | 43 | No | No | No |
keyPath |
Yes
|
25 | Yes | 22 | 22 | 8 | Yes |
locale
|
No | No | No | 43 | No | No | No |
multiEntry |
Yes
|
25 | ? | 22 | 22 | 8 | Yes |
name |
Yes
|
25 | Yes | 22 | 22 | 8 | Yes |
objectStore |
Yes
|
25 | Yes | 22 | 22 | 8 | Yes |
unique |
Yes
|
25 | Yes | 22 | 22 | 8 | Yes |
count |
Yes
|
25 | Yes | 22 | 22 | 8 | Yes |
get |
Yes
|
25 | Yes | 22 | 22 | 8 | Yes |
getAll |
48 | 48 | Yes | 44
|
35 | 10.1 | 5.0 |
getAllKeys |
48 | 48 | Yes | 44
|
35 | 10.1 | 5.0 |
getKey |
Yes
|
25 | Yes | 22 | 22 | 8 | Yes |
openCursor |
Yes
|
25 | Yes | 22 | 22 | 8 | Yes |
openKeyCursor |
Yes
|
25 | Yes | 22 | 22 | 8 | Yes |
IDBDatabase
IDBTransaction
IDBKeyRange
IDBObjectStore
IDBCursor
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/IDBIndex