indexedDB
La propriété globale en lecture seule indexedDB
fournit un mécanisme qui permet aux applications d'accéder aux bases de données indexées de façon asynchrone.
Syntaxe
js
var IDBFactory = self.indexedDB;
Valeur de retour
Un objet IDBFactory
.
Exemples
js
var db;
function openDB() {
var DBOpenRequest = window.indexedDB.open("toDoList");
DBOpenRequest.onsuccess = function (e) {
db = DBOpenRequest.result;
};
}
Spécifications
Specification |
---|
Indexed Database API 3.0 # dom-windoworworkerglobalscope-indexeddb |
Compatibilité des navigateurs
BCD tables only load in the browser
Voir aussi
- Utiliser IndexedDB
- Initier une connexion :
IDBDatabase
- Utiliser les transactions :
IDBTransaction
- Définir un intervalle de clés :
IDBKeyRange
- Récupérer et modifier les données :
IDBObjectStore
- Utiliser les curseurs
IDBCursor
- Exemple de référence : To-do Notifications (exemple live).