Lines Matching refs:objectStore
13 objectStore = db.createObjectStore('test')
14 objectStore.add('myValue1', 'myKey1')
15 objectStore.add('myValue2', 'myKey2')
16 objectStore.add('myValue3', 'myKey3')
17 objectStore.add('myValue4', 'myKey4')
20 trans.objectStore('test').openCursor({range: keyRange})
34 trans.objectStore('test').openCursor(keyRange)
37 objectStore = trans.objectStore('test')
38 objectStore.add('myValue1', 'myKey1')
40 objectStore.openCursor(keyRange)
43 objectStore.get('myKey1')