Package | Description |
---|---|
elemental.html | |
elemental.js.html |
Modifier and Type | Interface and Description |
---|---|
interface |
IDBVersionChangeRequest
Warning: The latest specification does not include this interface anymore as the
IDBDatabase.setVersion() method has been removed. |
Modifier and Type | Method and Description |
---|---|
IDBRequest |
IDBCursor._delete()
Returns an
IDBRequest object, and, in a separate thread, deletes the record at the cursor's position, without changing the cursor's position. |
IDBRequest |
IDBObjectStore._delete(IDBKeyRange keyRange)
Immediately returns an
IDBRequest object, and removes the record specified by the given key from this object store, and any indexes that reference it, in a separate thread. |
IDBRequest |
IDBObjectStore._delete(Object key)
Immediately returns an
IDBRequest object, and removes the record specified by the given key from this object store, and any indexes that reference it, in a separate thread. |
IDBRequest |
IDBObjectStore.add(Object value)
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. |
IDBRequest |
IDBObjectStore.add(Object value,
Object key)
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. |
IDBRequest |
IDBObjectStore.clear()
If the mode of the transaction that this object store belongs to is
READ_ONLY , this method raises an IDBDatabaseException with its code set to READ_ONLY_ERR . |
IDBRequest |
IDBObjectStore.count()
Immediately returns an IDBRequest object and asynchronously count the amount of objects in the object store that match the parameter, a key or a key range.
|
IDBRequest |
IDBIndex.count()
Returns an IDBRequest object, and in a separate thread, returns the number of records within a key range.
|
IDBRequest |
IDBObjectStore.count(IDBKeyRange range)
Immediately returns an IDBRequest object and asynchronously count the amount of objects in the object store that match the parameter, a key or a key range.
|
IDBRequest |
IDBIndex.count(IDBKeyRange range)
Returns an IDBRequest object, and in a separate thread, returns the number of records within a key range.
|
IDBRequest |
IDBObjectStore.count(Object key)
Immediately returns an IDBRequest object and asynchronously count the amount of objects in the object store that match the parameter, a key or a key range.
|
IDBRequest |
IDBIndex.count(Object key)
Returns an IDBRequest object, and in a separate thread, returns the number of records within a key range.
|
IDBRequest |
IDBIndex.get(IDBKeyRange key)
Returns an IDBRequest object, and, in a separate thread, finds either:
|
IDBRequest |
IDBFactory.getDatabaseNames() |
IDBRequest |
IDBIndex.getKey(IDBKeyRange key)
Returns an IDBRequest object, and, in a separate thread, finds either:
|
IDBRequest |
IDBIndex.getKey(Object key)
Returns an IDBRequest object, and, in a separate thread, finds either:
|
IDBRequest |
IDBObjectStore.getObject(IDBKeyRange key) |
IDBRequest |
IDBObjectStore.getObject(Object key) |
IDBRequest |
IDBIndex.getObject(Object key) |
IDBRequest |
IDBFactory.open(String name)
Warning: The description documents the old specification.
|
IDBRequest |
IDBIndex.openCursor()
Returns an IDBRequest object, and, in a separate thread, creates a cursor over the specified key range.
|
IDBRequest |
IDBObjectStore.openCursor(IDBKeyRange range)
Immediately returns an IDBRequest object, and creates a cursor over the records in this object store, in a separate thread.
|
IDBRequest |
IDBIndex.openCursor(IDBKeyRange range)
Returns an IDBRequest object, and, in a separate thread, creates a cursor over the specified key range.
|
IDBRequest |
IDBObjectStore.openCursor(IDBKeyRange range,
int direction)
Immediately returns an IDBRequest object, and creates a cursor over the records in this object store, in a separate thread.
|
IDBRequest |
IDBIndex.openCursor(IDBKeyRange range,
int direction)
Returns an IDBRequest object, and, in a separate thread, creates a cursor over the specified key range.
|
IDBRequest |
IDBObjectStore.openCursor(IDBKeyRange range,
String direction)
Immediately returns an IDBRequest object, and creates a cursor over the records in this object store, in a separate thread.
|
IDBRequest |
IDBIndex.openCursor(IDBKeyRange range,
String direction)
Returns an IDBRequest object, and, in a separate thread, creates a cursor over the specified key range.
|
IDBRequest |
IDBObjectStore.openCursor(Object key)
Immediately returns an IDBRequest object, and creates a cursor over the records in this object store, in a separate thread.
|
IDBRequest |
IDBIndex.openCursor(Object key)
Returns an IDBRequest object, and, in a separate thread, creates a cursor over the specified key range.
|
IDBRequest |
IDBObjectStore.openCursor(Object key,
int direction)
Immediately returns an IDBRequest object, and creates a cursor over the records in this object store, in a separate thread.
|
IDBRequest |
IDBIndex.openCursor(Object key,
int direction)
Returns an IDBRequest object, and, in a separate thread, creates a cursor over the specified key range.
|
IDBRequest |
IDBObjectStore.openCursor(Object key,
String direction)
Immediately returns an IDBRequest object, and creates a cursor over the records in this object store, in a separate thread.
|
IDBRequest |
IDBIndex.openCursor(Object key,
String direction)
Returns an IDBRequest object, and, in a separate thread, creates a cursor over the specified key range.
|
IDBRequest |
IDBIndex.openKeyCursor()
Returns an IDBRequest object, and, in a separate thread, creates a cursor over the specified key range, as arranged by this index.
|
IDBRequest |
IDBIndex.openKeyCursor(IDBKeyRange range)
Returns an IDBRequest object, and, in a separate thread, creates a cursor over the specified key range, as arranged by this index.
|
IDBRequest |
IDBIndex.openKeyCursor(IDBKeyRange range,
int direction)
Returns an IDBRequest object, and, in a separate thread, creates a cursor over the specified key range, as arranged by this index.
|
IDBRequest |
IDBIndex.openKeyCursor(IDBKeyRange range,
String direction)
Returns an IDBRequest object, and, in a separate thread, creates a cursor over the specified key range, as arranged by this index.
|
IDBRequest |
IDBIndex.openKeyCursor(Object key)
Returns an IDBRequest object, and, in a separate thread, creates a cursor over the specified key range, as arranged by this index.
|
IDBRequest |
IDBIndex.openKeyCursor(Object key,
int direction)
Returns an IDBRequest object, and, in a separate thread, creates a cursor over the specified key range, as arranged by this index.
|
IDBRequest |
IDBIndex.openKeyCursor(Object key,
String direction)
Returns an IDBRequest object, and, in a separate thread, creates a cursor over the specified key range, as arranged by this index.
|
IDBRequest |
IDBObjectStore.put(Object value)
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. |
IDBRequest |
IDBObjectStore.put(Object value,
Object key)
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. |
IDBRequest |
IDBCursor.update(Object value)
Returns an IDBRequest object, and, in a separate thread, updates the value at the current position of the cursor in the object store.
|
Modifier and Type | Class and Description |
---|---|
class |
JsIDBRequest |
class |
JsIDBVersionChangeRequest |
Copyright © 2018. All rights reserved.