The IDBVersionChangeRequest.setVersion
method updates the version of the database, returning immediately and running a versionchange
transaction on the connected database in a separate thread.
For older WebKit browsers, call this method before creating or deleting an object store.
Warning: The latest draft of the specification has dropped this method. Some not up-to-date browsers still implement this method. The new way is to define the version in the IDBDatabase.open()
method and create and delete object stores in the onupgradeneeded
event handler associated with the returned request.
Syntax
IDBVersionChangeRequest
setVersion
([TreatNullAs=EmptyString] in DOMString
version
);
Example
TBD
Parameters
- version
- The version to store in the database.
Returns
IDBVersionChangeRequest
- The request to change the version of a database.
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | Not supported | Not supported | Not supported | Not supported | Not supported |
Feature | Android | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | Not supported | Not supported | ? | Not supported | Not supported |
See also
Document Tags and Contributors
Tags:
Contributors to this page:
fscholz,
chrisdavidmills
Last updated by:
fscholz,