files/en-us/web/api/idbcursor/continueprimarykey/index.md
{{APIRef("IndexedDB")}} {{AvailableInWorkers}}
The continuePrimaryKey() method of the
{{domxref("IDBCursor")}} interface advances the cursor to the item whose key
matches the key parameter as well as whose primary key matches the primary key
parameter.
A typical use case, is to resume the iteration where a previous cursor has been closed, without having to compare the keys one by one.
Calling this method more than once before new cursor data has been loaded - for
example, calling continuePrimaryKey() twice from the same onsuccess handler
- results in an InvalidStateError being thrown on the second call because
the cursor's got value flag has been unset.
This method is only valid for cursors coming from an index. Using it for cursors coming from an object store will throw an error.
continuePrimaryKey(key, primaryKey)
key
primaryKey
None ({{jsxref("undefined")}}).
This method may raise a {{domxref("DOMException")}} of one of the following types:
TransactionInactiveError {{domxref("DOMException")}}
IDBCursor's transaction is inactive.DataError {{domxref("DOMException")}}
next or nextunique.prev or prevunique.InvalidStateError {{domxref("DOMException")}}
InvalidAccessError {{domxref("DOMException")}}
prev or next.here's how you can resume an iteration of all articles tagged with
"javascript" since your last visit:
let request = articleStore.index("tag").openCursor();
let count = 0;
let unreadList = [];
request.onsuccess = (event) => {
let cursor = event.target.result;
if (!cursor) {
return;
}
let lastPrimaryKey = getLastIteratedArticleId();
if (lastPrimaryKey > cursor.primaryKey) {
cursor.continuePrimaryKey("javascript", lastPrimaryKey);
return;
}
// update lastIteratedArticleId
setLastIteratedArticleId(cursor.primaryKey);
// preload 5 articles into the unread list;
unreadList.push(cursor.value);
if (++count < 5) {
cursor.continue();
}
};
{{Specifications}}
{{Compat}}