https://www.w3.org/Bugs/Public/show_bug.cgi?id=18809
Summary: Some examples in the index section (3.3.4) have errors
Product: WebAppsWG
Version: unspecified
Platform: PC
OS/Version: All
Status: NEW
Severity: trivial
Priority: P4
Component: Indexed Database API
AssignedTo: [email protected]
ReportedBy: [email protected]
QAContact: [email protected]
CC: [email protected], [email protected]
The following email reported errors in the examples in the "index" section
(3.3.4):
[[
http://lists.w3.org/Archives/Public/public-webapps/2012JulSep/0672.html
As far as I can tell, there is no "openIndex" method as shown in the "var
index" example below. I think it should be objectStore.index() ? Also, I am
assuming that the var vtx is a versionchange transaction object, but vtx is not
defined anywhere else in the documentation. Just figured I would pass these
along :)
3.3.4 Index
var db = indexedDBSync.open('AddressBook', 2, function(trans, oldVersion) {
if (oldVersion === 1) {
trans.db.createObjectStore('Contact', {keyPath:'id', autoIncrement:true});
}
var store = vtx.objectStore('Contact');
store.createIndex('ContactName', {unique:false, multiEntry:false});
});
var index = store.openIndex('ContactName');
var id = index.get('Lincoln');
// id === 1
]]
--
Configure bugmail: https://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.