W3cubDocs

/Web APIs

IDBDatabase.onclose

The onclose event handler of the IDBDatabase interface handles the close event, which is fired when the database is unexpectedly closed. This can happen, for example, when the application is shut down or access to the disk the database is stored on is lost while the database is open.

The close event is fired after all transactions have been aborted and the connection has been closed.

Note: This feature is available in Web Workers

Syntax

IDBDatabase.onclose = function(event) { ... };

Value

A function which is called when the close event is fired.

Example

db.onclose = function(event) {
  myAppShowAlert('The database "' + db.name + '" has unexpectedly closed.');
};

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
onclose
31
approx
79
50
No
Yes
10.1
≤37
31
50
Yes
10.3
2.0

See also

© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/IDBDatabase/onclose