-
-
Notifications
You must be signed in to change notification settings - Fork 641
Dexie.getDatabaseNames()
Dexie.getDatabaseNames(function callback(names){})
Promise
- callback - callback to be called with the result.
names: Array<String>
Returns an array of database names at current host.
Dexie.getDatabaseNames(function (databases) {
for (var i=0; i<databases.length; ++i) {
console.log(databases[i]);
}
});
This method is an extension to the native indexedDB API which does not support listing of database names. Chrome and Opera has implemented webkitGetDatabaseNames() but neither IE or Mozilla supports it. This method will check if webkitGetDatabaseNames() is present and use it if so. Otherwise it will return a list maintained by Dexie by using the localStorage API. The key in localStorage used for this, is "Dexie.DatabaseNames" pointing out a JSON representation of a string array.
This means that on Opera and Chrome, the method will work no matter if the database was created using Dexie or not, but on IE and Firefox, the method will only see databases created using Dexie.
In earlier versions of Dexie, it was possible to listen to changes on added/removed database names by using the following piece of code:
window.addEventListener('storage', function (event) {
if (event.key === "Dexie.DatabaseNames") {
console.log("A database was added or removed");
console.log("Old list: " + event.oldValue);
console.log("New list: " + event.newValue);
}
});
This code will now only work for non chromium browser since this commit removes the use of localStorage for Opera and Chrome. A future version of Dexie may enable a Dexie event to subscribe to for the same purpose that would work the same as before. If this is of interest for you, please file an issue and we'll try fix it.
Dexie.js - minimalistic and bullet proof indexedDB library