Articles tagged: API
Found 5012 documents
- 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 of times a cursor should move ...
- Web/API/IDBCursor/continue undefined
- Web/API/IDBCursor/continuePrimaryKey undefined
- 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 A value 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/IDBCursorSync The IDBCursorSync interface of the IndexedDB API represents a cursor for iterating over multiple ...
- 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 The IDBDatabase interface of the IndexedDB API provides a connection to a database ; you can use ...
- 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/IDBDatabaseException In the IndexedDB API, an IDBDatabaseException object represents exception conditions that can be ...
- Web/API/IDBDatabaseSync The DatabaseSync interface in the IndexedDB API represents a synchronous connection to a database.
- Web/API/IDBEnvironment The IDBEnvironment helper of the IndexedDB API contains the indexedDB property, which provides ...
- Web/API/IDBEnvironmentSync The Unimplemented IDBEnvironmentSync interface of the IndexedDB API will be implemented by ...
- 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/IDBFactory/open-obsolete If an error occurs while the database connection is being opened, then an error event is fired ...
- Web/API/IDBFactorySync The IDBFactorySync interface of the IndexedDB API provide a synchronous means of accessing the ...
- 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 found, then a structured clone of it is created and set as the result of the ...
- 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 found it is set as the result of the request object: this returns the primary key of ...
- 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/IDBIndexSync The IDBIndexSync interface of the IndexedDB API provides synchronous access to an index in a ...
- 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 IDBKeyRange : The newly created key range.
- Web/API/IDBKeyRange/includes key The key you want to check for in your key range. This can be any type.
- Web/API/IDBKeyRange/lower The lower bound of the key range (can be any type.)
- Web/API/IDBKeyRange/lowerBound IDBKeyRange : The newly created key range.
- Web/API/IDBKeyRange/lowerOpen A boolean :
- Web/API/IDBKeyRange/only value is the value for the new key range.
- Web/API/IDBKeyRange/upper The upper bound of the key range (can be any type.)
- Web/API/IDBKeyRange/upperBound IDBKeyRange : The newly created key range.
- Web/API/IDBKeyRange/upperOpen A boolean :
- Web/API/IDBLocaleAwareKeyRange The IDBLocaleAwareKeyRange interface of the IndexedDB API is a Firefox-specific version of ...
- Web/API/IDBMutableFile The IDBMutableFile interface provides access in read or write mode to a file, dealing with all ...
- Web/API/IDBMutableFile/getFile The getFile method allows to retrieve a read-only snapshot of the handled file in the form of a ...
- Web/API/IDBMutableFile/name Provides the name of the file.
- Web/API/IDBMutableFile/onabort Specifies an event listener to receive abort events. These events occur when the associated ...
- Web/API/IDBMutableFile/onerror Specifies an event listener to receive error events. These events occur when something goes wrong.
- Web/API/IDBMutableFile/open The open method returns a LockedFile object that allows to safely write in the file.
- Web/API/IDBMutableFile/type Provides the mime type of the file.
- 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/openKeyCursor To determine if the add operation has completed successfully, listen for the results’s success ...
- Web/API/IDBObjectStore/put The put method is an update or insert method. See the IDBObjectStore.add method for an insert ...
- Web/API/IDBObjectStore/transaction An IDBTransaction object.
- Web/API/IDBObjectStoreSync The IDBObjectStoreSync interface of the IndexedDB API provides synchronous access to an object ...
- Web/API/IDBOpenDBRequest Also inherits methods from its parents IDBRequest and EventTarget.
- Web/API/IDBOpenDBRequest/onblocked The onblocked event handler of the IDBOpenDBRequest interface is the event handler for the ...
- 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+/Firefox 58+ 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 any
- 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.