Odin Hørthe Omdal, @odinho_, Opera Software
Persistently store values and javascript objects in the browser.
Get them back as needed. By key, or index
var count_request = db.transaction("store", "read")
.objectStore("store")
.count()
count_request.onsuccess = function() {
console.log(count_request.result)
}
openCursor(undefined, "prev")
work as you expect
|-- README
|-- test-suggestions.txt
|-- starters
| |-- incomplete
| | `-- idbtransaction-oncomplete.htm
| `-- test_template.htm
`-- tests
`-- testAuthor
|-- approved
|-- inprogress
`-- needsreview
|-- examples
| |-- idbcursor-direction-index-keyrange.htm
| |-- idbindex-multientry-arraykeypath.htm
| |-- idbindex_count3.htm
| |-- idbobjectstore_createIndex7-event_order.htm
| |-- idbobjectstore_deleted.htm
| |-- key_invalid.htm
| `-- support.js
Odin Hørthe Omdal, Opera Software