Articles tagged: indexeddb
Found 109 documents
- Archive/Firefox_OS/Firefox_OS_apps/Reference_apps/General_notes General Notes is a simple note app that allows you to sync local and remote content.
- Archive/Firefox_OS/Firefox_OS_apps/Reference_apps/rtcamera
- Tools/Storage_Inspector The Storage Inspector enables you to inspect various types of storage that a web page can use. ...
- Web/API/IDBCursor The IDBCursor interface of the IndexedDB API represents a cursor for traversing or iterating ...
- Web/API/IDBCursor/advance The advance() method of the IDBCursor interface sets the num ber times a cursor should move its ...
- Web/API/IDBCursor/continue This method may raise a DOMException of one of the following types:
- Web/API/IDBCursor/delete An IDBRequest object on which subsequent events related to this operation are fired. The result ...
- Web/API/IDBCursor/direction A string (defined by the IDBCursorDirection enum) indicating the direction in which the cursor ...
- Web/API/IDBCursor/key The value can be of any type.
- Web/API/IDBCursor/primaryKey A value, of any data type.
- Web/API/IDBCursor/source The IDBObjectStore or IDBIndex that the cursor is iterating over.
- Web/API/IDBCursor/update The update() method of the IDBCursor interface returns an IDBRequest object, and, in a separate ...
- Web/API/IDBCursorWithValue The IDBCursorWithValue interface of the IndexedDB API represents a cursor for traversing or ...
- Web/API/IDBCursorWithValue/value The value of the current cursor.
- Web/API/IDBDatabase Inherits from: EventTarget
- Web/API/IDBDatabase/close The connection is not actually closed until all transactions created using this connection are ...
- Web/API/IDBDatabase/createObjectStore The method takes the name of the store as well as a parameter object that lets you define ...
- Web/API/IDBDatabase/deleteObjectStore As with IDBDatabase.createObjectStore, this method can be called only within a versionchange ...
- Web/API/IDBDatabase/name A DOMString containing the name of the connected database.
- Web/API/IDBDatabase/objectStoreNames A DOMStringList containing a list of the names of the object stores currently in the connected ...
- Web/API/IDBDatabase/onabort This example shows an IDBOpenDBRequest.onupgradeneeded block that creates a new object store; it ...
- Web/API/IDBDatabase/onclose A function which is called when the close event is fired.
- Web/API/IDBDatabase/onerror This example shows an IDBOpenDBRequest.onupgradeneeded block that creates a new object store; it ...
- Web/API/IDBDatabase/onversionchange This example shows an IDBOpenDBRequest.onupgradeneeded block that creates a new object store; it ...
- Web/API/IDBDatabase/transaction An IDBTransaction object.
- Web/API/IDBDatabase/version An integer containing the version of the connected database.
- Web/API/IDBEnvironment The IDBEnvironment interface of the IndexedDB API contains the indexedDB property, which ...
- Web/API/IDBEnvironment/indexedDB The indexedDB property of the IDBEnvironment interface provides a mechanism for applications to ...
- Web/API/IDBFactory In the following code snippet, we make a request to open a database, and include handlers for ...
- Web/API/IDBFactory/cmp An integer that indicates the result of the comparison; the table below lists the possible ...
- Web/API/IDBFactory/deleteDatabase If the database is successfully deleted, then a success event is fired on the request object ...
- Web/API/IDBFactory/open If an error occurs while the database connection is being opened, then an error event is fired ...
- Web/API/IDBIndex IDBIndex interface of the IndexedDB API provides asynchronous access to an index in a database. ...
- Web/API/IDBIndex/count A IDBRequest object on which subsequent events related to this operation are fired.
- Web/API/IDBIndex/get If a value is successfully found, then a structured clone of it is created and set as the result ...
- Web/API/IDBIndex/getAll There is a performance cost associated with looking at the value property of a cursor, because ...
- Web/API/IDBIndex/getAllKeys An IDBRequest object on which subsequent events related to this operation are fired.
- Web/API/IDBIndex/getKey If a key is successfully found it is set as the result of the request object: this returns the ...
- Web/API/IDBIndex/isAutoLocale The isAutoLocale read-only property of the IDBIndex interface returns a Boolean indicating ...
- Web/API/IDBIndex/keyPath Any data type that can be used as a key path.
- Web/API/IDBIndex/locale The locale read-only property of the IDBIndex interface returns the locale of the index (for ...
- Web/API/IDBIndex/multiEntry A Boolean :
- Web/API/IDBIndex/name A DOMString specifying a name for the index.
- Web/API/IDBIndex/objectStore An IDBObjectStore.
- Web/API/IDBIndex/openCursor The method sets the position of the cursor to the appropriate record, based on the specified ...
- Web/API/IDBIndex/openKeyCursor The method sets the position of the cursor to the appropriate key, based on the specified direction.
- Web/API/IDBIndex/unique A Boolean :
- Web/API/IDBKeyRange A key range can be a single value or a range with upper and lower bounds or endpoints. If the ...
- Web/API/IDBKeyRange/bound The bounds can be open (that is, the bounds exclude the endpoint values) or closed (that is, the ...
- Web/API/IDBKeyRange/includes A Boolean.
- Web/API/IDBKeyRange/lower The lower bound of the key range (can be any type.)
- Web/API/IDBKeyRange/lowerBound By default, it includes the lower endpoint value and is closed.
- Web/API/IDBKeyRange/lowerOpen A boolean :
- Web/API/IDBKeyRange/only IDBKeyRange : The newly created key range.
- Web/API/IDBKeyRange/upper The upper bound of the key range (can be any type.)
- Web/API/IDBKeyRange/upperBound By default, it includes the upper endpoint value and is closed.
- Web/API/IDBKeyRange/upperOpen A boolean :
- Web/API/IDBLocaleAwareKeyRange The IDBLocaleAwareKeyRange interface of the IndexedDB API is a Firefox-specific version of ...
- 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/delete An IDBRequest object on which subsequent events related to this operation are fired. The ...
- 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/put If the record is successfully stored, then a success event is fired on the returned request ...
- Web/API/IDBObjectStore/transaction An IDBTransaction object.
- Web/API/IDBOpenDBRequest No methods, but inherits methods from its parents IDBRequest and EventTarget.
- Web/API/IDBOpenDBRequest/onblocked The IDBOpenDBRequest.onblocked event handler is the event handler for the blocked event. This ...
- Web/API/IDBOpenDBRequest/onupgradeneeded In the following example you can see the onupgradeneeded handler being used to update the ...
- Web/API/IDBRequest The request object does not initially contain any information about the result of the operation, ...
- Web/API/IDBRequest/error A DOMError containing the relevant error. In Chrome 48 and later this property returns a ...
- Web/API/IDBRequest/onerror The following example requests a given record title, onsuccess gets the associated record from ...
- Web/API/IDBRequest/onsuccess The following example requests a given record title, onsuccess gets the associated record from ...
- Web/API/IDBRequest/readyState The IDBRequestReadyState of the request, which takes one of the following two values:
- Web/API/IDBRequest/result An IDBObjectStore containing the result of the request.
- Web/API/IDBRequest/source An object representing the source of the request, such as an IDBIndex, IDBObjectStore or IDBCursor.
- Web/API/IDBRequest/transaction An IDBTransaction.
- Web/API/IDBTransaction Note that as of Firefox 40, IndexedDB transactions have relaxed durability guarantees to ...
- Web/API/IDBTransaction/abort All pending IDBRequest objects created during this transaction have their IDBRequest.error ...
- Web/API/IDBTransaction/db An IDBDatabase object.
- Web/API/IDBTransaction/error A DOMError containing the relevant error. In Chrome 48 and later this property returns a ...
- Web/API/IDBTransaction/mode An IDBTransactionMode object defining the mode for isolating access to data in the current ...
- Web/API/IDBTransaction/objectStore Every call to this method on the same transaction object, with the same name, returns the same ...
- Web/API/IDBTransaction/ObjectStoreNames The objectStoreNames property of the IDBTransaction interface returns a DOMStringList of names ...
- Web/API/IDBTransaction/onabort In the following code snippet, we open a read/write transaction on our database and add some ...
- Web/API/IDBTransaction/oncomplete The oncomplete event handler of the IDBTransaction interface handles the complete event, ...
- Web/API/IDBTransaction/onerror In the following code snippet, we open a read/write transaction on our database and add some ...
- Web/API/IDBVersionChangeEvent The IDBVersionChangeEvent interface of the IndexedDB API indicates that the version of the ...
- Web/API/IDBVersionChangeEvent/newVersion In the following code snippet, we make a request to open a database, and include handlers for ...
- Web/API/IDBVersionChangeEvent/oldVersion In the following code snippet, we make a request to open a database, and include handlers for ...