Finally we get to the part where we can see the results of our Indexed DB tutorial. For the last few moths we have been structuring our database, adding data and now I’ll show how you can read data from an Indexed DB. For this we have 2 approaches. First one is retrieving a single record and the other way is retrieving a collection of records by a cursor.
In this post I’ll handle the retrieving of a single record. A post about retrieving data with a cursor will appear in the near future.
Retrieving data from an object store
In the IObjectStore interface we have an get method to retrieve data. This method must be provided with a key we want to search on. The key parameter can be a valid key or a key range. In case you don’t provide a valid key, a DATA_ERR exception will be thrown.
In the first situation a record of the object store will be retrieved where the given key is the same as the key of the key/value pair. In the other situation, the first record will be retrieved that matches one of the keys defined in the key range. If no record gets found, the result will be undefined. If you are using the Indexed DB prototype on IE 9, you’ll get an “Object with specified key not found.” error in stead of an result.
Time for some code:
When we want to read data, we need to create a transaction. This we do on the same way as for adding data. The only difference is we can use the IDBTransaction.READ_ONLY mode. This is the type that will be used as default when we create a transaction.
1: var txn = dbconnection.transaction([“ObjectStoreName”]);
2: var objectStore = txn.objectStore(“ObjectStoreName”);
The result of the get method is a IDBrequest object. When this is successful, the record is added to the result.
1: var getReq = store.get(key);
2: getReq.onsuccess = function(event) {
3: var result;
4: // IE 9 implementation
5: if(event.result){
6: result = event.result;
7: }
8: // IE 10, Chrome and Firefox implementation
9: else if (getReq.result){
10: result = getReq.result;
11: }
12: // Code to present the result on your screen
13: };
Retrieving data from an Index
In a previous post I have been talking about Indexes. Indexes make it possible to look up data from the object store by fields of the value object. By example: we have an object store person. In this object store we store persons. A person object has a first name and a last name field. By creating an index with a key path “last name”, we make it possible to retrieve data from the object store by providing the last name of the person.
In the IDBIndex interface we have the get method to retrieve a record from the object store, and the GetKey method to retrieve the key of the record from the object store. In both cases a key must be provided. This key parameter can be a valid key or a key range. For the rest every thing works the same as for retrieving data from an object store.
One think you need to keep in mind. In the Indexed DB prototype on IE9 the get and getKey method work different. In this case the getKey method retrieves the data and the get method the key of the record.
1: var txn = dbconnection.transaction([“ObjectStoreName”]);
2: var objectStore = txn.objectStore(“ObjectStoreName”);
3: var index = store.index(“IndexName”);
4: var getReq = index.getKey(key);
5:
6: getReq.onsuccess = function(event) {
7: var result;
8: if(event.result){
9: result = event.result;
10: }
11: else{
12: result = getReq.result
13: }
14: // Code to present the result on your screen
15: };
I don't have a thought implementing this to my db. I've uploaded the plugin and the remainder codes to my .js hence no success yet.
ReplyDeleterugged handheld pc