IDBIndex: openKeyCursor() method
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
Note: This feature is available inWeb Workers.
TheopenKeyCursor() method of theIDBIndex interface returns anIDBRequest object, and, ina separate thread, creates a cursor over the specified key range, as arranged by thisindex.
The method sets the position of the cursor to the appropriate key, based on thespecified direction.
If the key range is not specified or is null, then the range includes all the keys.
Note:Cursors returned byopenKeyCursor() do notmake the referenced value available asIDBIndex.openCursor does.This makes obtaining a list of keys much more efficient.
In this article
Syntax
openKeyCursor()openKeyCursor(range)openKeyCursor(range, direction)Parameters
rangeOptionalA key or
IDBKeyRangeto use as the cursor's range. If nothing ispassed, this will default to a key range that selects all the records in this objectstore.directionOptionalThe cursor'sdirection. SeeIDBCursor Constants for possiblevalues.
Return value
AnIDBRequest object on which subsequent events related to this operation are fired.
If the operation is successful, the value of the request'sresult property is:
- an
IDBCursorobject pointing at the first record matching the given query nullif no matching records were found.
Exceptions
This method may raise aDOMException of one of the following types:
TransactionInactiveErrorDOMExceptionThrown if this
IDBIndex's transaction is inactive.TypeErrorThrown if the value for the direction parameter is invalid.
DataErrorDOMExceptionThrown if the key or key range provided contains an invalid key.
InvalidStateErrorDOMExceptionThrown if the
IDBIndexhas been deleted or removed.
Examples
In the following example we open a transaction and an object store, then get theindexlName from a simple contacts database. We then open a key cursor onthe index usingopenKeyCursor() — this works the same as opening a cursordirectly on anObjectStore usingIDBObjectStore.openKeyCursor except that the returned records are sortedbased on the index, not the primary key.
Finally, we iterate through each record in the index, and insert the last name and thecorresponding primary key of the referenced record into an HTML table.
function displayDataByIndex() { tableEntry.textContent = ""; const transaction = db.transaction(["contactsList"], "readonly"); const objectStore = transaction.objectStore("contactsList"); const myIndex = objectStore.index("lName"); myIndex.openKeyCursor().onsuccess = (event) => { const cursor = event.target.result; if (cursor) { const tableRow = document.createElement("tr"); tableRow.appendChild(document.createElement("td")).textContent = cursor.key; tableRow.appendChild(document.createElement("td")).textContent = cursor.primaryKey; tableEntry.appendChild(tableRow); cursor.continue(); } else { console.log("All last names displayed."); } };}Specifications
| Specification |
|---|
| Indexed Database API 3.0> # ref-for-dom-idbindex-openkeycursor①> |
Browser compatibility
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 the example live).