65.9K
CodeProject is changing. Read more.
Home

Updating an Existing IndexedDB objectStore

starIconstarIconstarIconstarIconstarIcon

5.00/5 (1 vote)

Feb 24, 2012

CPOL

1 min read

viewsIcon

23814

How to update an existing IndexedDB objectStore

Introduction

A few weeks ago, I published an article on CodeProject called “Getting Started with IndexedDB”. One of the questions that I got was how to update an existing objectStore with a new index. This post will answer the question.

The updateneeded Event

In IndexedDB, the only way to update the database is through the updateneeded event. That event is raised when you use the IndexedDB open function with a database version number which is greater than the current database version number. For example, let's assume that there is an IndexedDB database with the name PeopleDB which has a version number of 1. The following code will raise the updateneeded event:

var request = indexedDB.open("PeopleDB", 2); 

The open function returns IDBRequest object (since all the functionality in IndexedDB is asynchronous by default) which you will use to wire handlers for onsuccess, onerror, and onupgradeneeded. You will wire the events as shown in the following example:

var request = indexedDB.open("PeopleDB", 2);                  
request.onsuccess = function (evt) {
    db = request.result;                                                            
};
 
request.onerror = function (evt) {
    console.log("IndexedDB error: " + evt.target.errorCode);
};
 
request.onupgradeneeded = function (evt) {                                           
  // Change the Database structure
};

The example shows how to wire the event handlers for the success, error, and upgradeneeded events. db is a variable that will hold the database after it is opened.

Creating a New Index

In the event handler for the updateneeded event, you can create a new objectStore index. Here is an example of how to do that:

var request = indexedDB.open("PeopleDB", 2);                  
request.onsuccess = function (evt) {
    db = request.result;                                                            
};

request.onerror = function (evt) {
    console.log("IndexedDB error: " + evt.target.errorCode);
};

request.onupgradeneeded = function (evt) {                                           
    var objectStore = evt.currentTarget.transaction.objectStore("people");
    objectStore.createIndex("city", "city", { unique: false });                        

    // Store a new value in the objectStore. 
    var req = objectStore.add({ name: "New person", 
      email: "newperson@company.com", city: "Palms street" });
    req.onsuccess = function (event) {
        // Add succeeded
    };
;

In the example, you use the event parameter that is passed to the updateneeded handler to get the opened update transaction. Through the transaction, you can get the relevant objectStore which will be manipulated. On the objectStore, you use the createIndex function to create a new index. The rest of the code is inserting a new person into the objectStore.

Summary

Updating an IndexedDB existing objectStore is done using the updateneeded which is raised when you change the database version.