Lines Matching full:indexes
105 // We could skip setting up the object stores and indexes if this were a real application
117 // can add or delete indexes and objectStores. The result (property of the request) is an
178 // Now let's create some indexes. Indexes allow you to create other keys via key paths which
180 // indexes for a persons first and last name. Indexes can optionally be specified to not be
186 // Note that if you wanted to delete these indexes, you can either call objectStore.deleteIndex
187 // or simply delete the objectStores that own the indexes.
191 // can be atomic with changes to the objectStores/indexes.
254 // Verify that fname and lname are the only indexes in existance.
338 …// return unique entires (only applies to indexes with unique set to false), PREV to move backward…
390 // Similarly, indexes have openCursor and openKeyCursor. We'll try a few of them with various
415 // To keep things simple to begin with, objectStores and indexes can only be created in a setVers…
418 // objectStores and indexes from breaking in odd ways when things get changed out from underneith i…