IDBCursor
This IndexedDB API interface represents a cursor for traversing or iterating over multiple records in a database.
Inheritors
Properties
Returns the direction ("next", "nextunique", "prev" or "prevunique") of the cursor.
Returns the key of the cursor. Throws a "InvalidStateError" DOMException if the cursor is advancing or is finished.
Returns the effective key of the cursor. Throws a "InvalidStateError" DOMException if the cursor is advancing or is finished.
Functions
Advances the cursor to the next record in range.
Advances the cursor to the next record in range matching or after key and primaryKey. Throws an "InvalidAccessError" DOMException if the source is not an index.
Delete the record pointed at by the cursor with a new value.
Updated the record pointed at by the cursor with a new value.