The IDBVersionChangeEvent interface of the IndexedDB API indicates the version of the database has changed, as the result of an event handler function.
The IDBVersionChangeEvent interface of the IndexedDB API indicates the version of the database has changed, as the result of an event handler function.
(new-version this)
Property.
[Read Only]
A 64-bit integer.
var newVersion = IDBVersionChangeEvent.newVersion
See also: https://developer.mozilla.org/en-US/docs/Web/API/IDBVersionChangeEvent/newVersion
Property. [Read Only] A 64-bit integer. `var newVersion = IDBVersionChangeEvent.newVersion` See also: `https://developer.mozilla.org/en-US/docs/Web/API/IDBVersionChangeEvent/newVersion`
(old-version this)
Property.
[Read Only]
The oldVersion read-only property of the web.storage.IDBVersionChangeEvent
returns the old version number of the database.
var oldVersion = IDBVersionChangeEvent.oldVersion
See also: https://developer.mozilla.org/en-US/docs/Web/API/IDBVersionChangeEvent/oldVersion
Property. [Read Only] The oldVersion read-only property of the `web.storage.IDBVersionChangeEvent` returns the old version number of the database. `var oldVersion = IDBVersionChangeEvent.oldVersion` See also: `https://developer.mozilla.org/en-US/docs/Web/API/IDBVersionChangeEvent/oldVersion`
(version this)
Property.
[Read Only]
The version property of the web.storage.IDBVersionChangeEvent
returns The new version of the database in a versionchange transaction.
readonly attribute unsigned long long? version;
See also: https://developer.mozilla.org/en-US/docs/Web/API/IDBVersionChangeEvent/version
Property. [Read Only] The version property of the `web.storage.IDBVersionChangeEvent` returns The new version of the database in a versionchange transaction. `readonly attribute unsigned long long? version;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/IDBVersionChangeEvent/version`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close