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
.
Methods
Inherits from: EventTarget
IDBIndex.count()
- Returns an
IDBRequest
object, and in a separate thread, returns the number of records within a key range. IDBIndex.get()
- Returns an
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, ifkey
is anIDBKeyRange
. IDBIndex.getKey()
- Returns an
IDBRequest
object, and, in a separate thread, finds either the given key or the primary key, ifkey
is anIDBKeyRange
. IDBIndex.getAll()
- Returns an
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, ifkey
is anIDBKeyRange
. IDBIndex.getAllKeys()
- Returns an
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, ifkey
is anIDBKeyRange
. IDBIndex.openCursor()
- Returns an
IDBRequest
object, and, in a separate thread, creates a cursor over the specified key range. IDBIndex.openKeyCursor()
- Returns an
IDBRequest
object, and, in a separate thread, creates a cursor over the specified key range, as arranged by this index.
Properties
IDBIndex.isAutoLocale
Read only- Returns a
Boolean
indicating whether the index had alocale
value ofauto
specified upon its creation (seecreateIndex()
's optionalParameters.) IDBIndex.locale
Read only- Returns the locale of the index (for example
en-US
, orpl
) if it had alocale
value specified upon its creation (seecreateIndex()
's optionalParameters.) IDBIndex.name
- The name of this index.
IDBIndex.objectStore
Read only- The name of the object store referenced by this index.
IDBIndex.keyPath
Read only- The key path of this index. If null, this index is not auto-populated.
IDBIndex.multiEntry
Read only- Affects how the index behaves when the result of evaluating the index's key path yields an array. If
true
, there is one record in the index for each item in an array of keys. Iffalse
, then there is one record for each key that is an array. IDBIndex.unique
Read only- If
true
, this index does not allow duplicate values for a key.
Example
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
Specification | Status | Comment |
---|---|---|
Indexed Database API The definition of 'IDBIndex' in that specification. |
Recommendation |
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | 23.0webkit 24.0 |
10 moz 16.0 (16.0) |
10, partial | 15 | 7.1 |
count() |
23.0 | 22.0 (22.0) | 10, partial | 15 | 7.1 |
getAll() and getAllKeys() |
48.0 | 24.0 (24.0) behind dom.indexedDB.experimental pref |
No support | No support | No support |
Available in workers | (Yes) | 37.0 (37.0) | ? | (Yes) | ? |
isAutoLocale and locale |
No support |
43.0 (43.0) |
No support | No support | No support |
name setter available |
? | 49 (49) | ? | ? | ? |
Feature | Android | Android Webview | Firefox Mobile (Gecko) | Firefox OS | IE Phone | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|---|
Basic support | 4.4 | (Yes) | 22.0 (22.0) | 1.0.1 | 10 | 22 | No support | (Yes) |
count() |
4.4 | (Yes) | 22.0 (22.0) | 1.0.1 | 10 | 22 | No support | (Yes) |
getAll() and getAllKeys() |
No support | 48.0 | 24.0 (24.0) behind dom.indexedDB.experimental pref |
1.1 behinddom.indexedDB.experimental pref |
No support | No support | No support | 48.0 |
Available in workers | (Yes) | (Yes) | 37.0 (37.0) | (Yes) | ? | (Yes) | ? | (Yes) |
isAutoLocale and locale |
No support | No support | 43.0 (43.0) behind dom.indexedDB.experimental pref |
2.5 behind dom.indexedDB.experimental pref |
No support | No support | No support | No support |
name setter available |
? | ? | 49.0 (49) | ? | ? | ? | ? | ? |
See also
- Using IndexedDB
- Starting transactions:
IDBDatabase
- Using transactions:
IDBTransaction
- Setting a range of keys:
IDBKeyRange
- Retrieving and making changes to your data:
IDBObjectStore
- Using cursors:
IDBCursor
- Reference example: To-do Notifications (view example live.)