ReadonlyautoThe autoIncrement read-only property of the for this object store.
ReadonlyindexThe indexNames read-only property of the in this object store.
ReadonlykeyThe keyPath read-only property of the If this property is null, the application must provide a key for each modification operation.
The name property of the IDBObjectStore interface indicates the name of this object store.
ReadonlytransactionThe transaction read-only property of the object store belongs.
The add() method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, creates a structured clone of the value, and stores the cloned value in the object store.
Optionalkey: IDBValidKeyThe clear() method of the IDBObjectStore interface creates and immediately returns an IDBRequest object, and clears this object store in a separate thread.
The count() method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the total number of records that match the provided key or of records in the store.
Optionalquery: IDBValidKey | IDBKeyRangeThe createIndex() method of the field/column defining a new data point for each database record to contain.
Optionaloptions: IDBIndexParametersThe delete() method of the and, in a separate thread, deletes the specified record or records.
The deleteIndex() method of the the connected database, used during a version upgrade.
The get() method of the IDBObjectStore interface returns an IDBRequest object, and, in a separate thread, returns the object selected by the specified key.
The getAll() method of the containing all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.
Optionalquery: IDBValidKey | IDBKeyRange | nullOptionalcount: numberThe getAllKeys() method of the IDBObjectStore interface returns an IDBRequest object retrieves record keys for all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.
Optionalquery: IDBValidKey | IDBKeyRange | nullOptionalcount: numberThe getKey() method of the and, in a separate thread, returns the key selected by the specified query.
The index() method of the IDBObjectStore interface opens a named index in the current object store, after which it can be used to, for example, return a series of records sorted by that index using a cursor.
The openCursor() method of the and, in a separate thread, returns a new IDBCursorWithValue object.
Optionalquery: IDBValidKey | IDBKeyRange | nullOptionaldirection: IDBCursorDirectionThe openKeyCursor() method of the whose result will be set to an IDBCursor that can be used to iterate through matching results.
Optionalquery: IDBValidKey | IDBKeyRange | nullOptionaldirection: IDBCursorDirectionThe put() method of the IDBObjectStore interface updates a given record in a database, or inserts a new record if the given item does not already exist.
Optionalkey: IDBValidKey
The
IDBObjectStoreinterface of the IndexedDB API represents an object store in a database.MDN Reference