Interface IDBIndex

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.

MDN Reference

Hierarchy

  • IDBIndex

Properties

keyPath: string | string[]
multiEntry: boolean
name: string

Returns the name of the index.

MDN Reference

objectStore: IDBObjectStore

Returns the IDBObjectStore the index belongs to.

MDN Reference

unique: boolean

Methods

  • Retrieves the value of the first record matching the given key or key range in query.

    If successful, request's result will be the value, or undefined if there was no matching record.

    MDN Reference

    Parameters

    Returns IDBRequest<any>

  • Retrieves the values of the records matching the given key or key range in query (up to count if given).

    If successful, request's result will be an Array of the values.

    MDN Reference

    Parameters

    Returns IDBRequest<any[]>