Articles tagged: IDBObjectStore
Found 17 documents
- Web/API/IDBObjectStore This example shows a variety of different uses of object stores, from updating the data ...
- Web/API/IDBObjectStore/add To determine if the add operation has completed successfully, listen for the transaction’s ...
- Web/API/IDBObjectStore/autoIncrement A Boolean :
- Web/API/IDBObjectStore/clear Clearing an object store consists of removing all records from the object store and removing all ...
- Web/API/IDBObjectStore/count An IDBRequest object on which subsequent events related to this operation are fired.
- Web/API/IDBObjectStore/createIndex Note that this method must be called only from a VersionChange transaction mode callback.
- Web/API/IDBObjectStore/deleteIndex Note that this method must be called only from a VersionChange transaction mode callback. Note ...
- Web/API/IDBObjectStore/get If a value is successfully found, then a structured clone of it is created and set as the result ...
- Web/API/IDBObjectStore/getAll If a value is successfully found, then a structured clone of it is created and set as the result ...
- Web/API/IDBObjectStore/getAllKeys If a value is successfully found, then a structured clone of it is created and set as the result ...
- Web/API/IDBObjectStore/index An IDBIndex object for accessing the index.
- Web/API/IDBObjectStore/indexNames A DOMStringList.
- Web/API/IDBObjectStore/keyPath If this property is null, the application must provide a key for each modification operation.
- Web/API/IDBObjectStore/name A DOMString containing the object store's name.
- Web/API/IDBObjectStore/openCursor To determine if the add operation has completed successfully, listen for the results’s success ...
- Web/API/IDBObjectStore/openKeyCursor To determine if the add operation has completed successfully, listen for the results’s success ...
- Web/API/IDBObjectStore/put If the record is successfully stored, then a success event is fired on the returned request ...