I am trying indexedDB for the first time, trying to follow various examples I found on the Internet. It works, somewhat, but I am getting inconsistent results when I read the database.
The database is created as follows:
myapp.indexedDB.open = function() {
var request = indexedDB.open('todos', "2");
request.onblocked = function(e) {
alert('Please close all other tabs with this site open so the database can be updated.');
};
request.onsuccess = function(e) {
myapp.indexedDB.db = e.target.result;
myapp.indexedDB.db.onversionchange = function(e) {
myapp.indexedDB.db.close();
alert('The database is being upgraded. Please reload.');
};
myapp.indexedDB.getAllTodoItems();
};
request.onupgradeneeded = function(e) {
var db = e.target.result;
if(!db.objectStoreNames.contains('todo')) {
var store = e.currentTarget.result.createObjectStore(
'todo',
{keyPath: "timeStamp"}
);
}
if(!db.objectStoreNames.contains('sites')) {
var site_store = e.currentTarget.result.createObjectStore(
'sites',
{keyPath: 'id'}
);
}
};
request.onfailure = myapp.indexedDB.onerror;
};
The todo store is from an example I found. It is the sites store that I am having difficulty with.
I read the sites store like this:
function update_sites() {
$('#sites_table').ig_grid('delete_all_rows');
var db = myapp.indexedDB.db;
var trans = db.transaction(["sites"], "readwrite");
var store = trans.objectStore('sites');
var cursorRequest = store.openCursor();
cursorRequest.onsuccess = function(e) {
var result = e.target.result;
if(!!result == false) return;
render_site(result.value);
console.log('rendered a site');
result.continue();
};
cursorRequest.onerror = myapp.indexedDB.onerror;
}
function render_site(site) {
$('#sites_table').ig_grid('add_row', [site.id,site.id,site.flag,site.site_code,site.site_name,site.owner_name,site.address,site.hive_capacity,site.hive_count,render_status(site.status_id)]);
}
So far, all is well. Data written to the database is read and rendered correctly.
The problem occurs when I update the database. The update is done like this:
function sync_sites() {
display_status('');
var jqxhr = $.ajax({
type: "GET",
url: '/myapp.pl/REST/sites'
})
.fail(function(jqXHR, textStatus) {
display_status(jqXHR.responseText);
})
.done(function(data, textStatus, jqXHR) {
var sites = jQuery.parseJSON(data.data);
for (var i = 0; i < sites.length; i++) {
myapp.indexedDB.add_site(sites[i]);
}
alert('sync done');
});
}
myapp.indexedDB.add_site = function(site) {
var db = myapp.indexedDB.db;
var trans = db.transaction(["sites"], "readwrite");
var store = trans.objectStore('sites');
var request = store.put(site);
request.onsuccess = function(e) {
// TODO: whatever is appropriate if the site is added successfully
};
request.onerror = function(e) {
console.log(e.value);
};
};
The update of the database also succeeds.
The problem is that shortly after the update of the database begins - just after the 'sync done' alert is displayed, the update_sites function empties the displayed table of sites and does not add any sites: as if the database were empty. Then, if I keep reloading the sites display, after a few more seconds (several reloads) several hundreds to a few thousand rows are added to the sites table, with each row duplicated several times. There are actually 216 records in the sites store/table normally. Eventually, about the time the last database update (put) completes (I think) the display update works correctly again.
The display update (update_sites) works correctly most of the time - it only gives incorrect results if I run it in a short interval of a few seconds after sync_sites has run.
There are two error modes: in the first, no data is read from the store, as if it were empty or the cursor matched no records (never succeeded); and in the second the cursor does not stop after all records in the store have been returned, it keeps looping through all the records over and over, until it eventually stops at some seemingly arbitrary point.
I don't see any errors in the error console, either when update_sites runs correctly or when it gives incorrect results, or from sync_sites. In fact, no errors or warnings at all in the error console when this is running.
I have inspected the underlying database with sqlite3 and there is no duplication of records in the database that I can see. There are 219 records in object_data: 3 related to the todo store and 216 related to the sites store.
FWIW, this is with Firefox 16.0.1.
Am I doing something wrong?
Are there additional errors, warnings, traces or diagnostics I can enable that might help to pinpoint the cause of the errors?
Has anyone else seen this behaviour?
Thanks, Ian