objectStore method
The objectStore()
method of the
IDBTransaction interface returns an object store that has already been
added to the scope of this transaction.
Every call to this method on the same transaction object, with the same name, returns the same IDBObjectStore instance. If this method is called on a different transaction object, a different IDBObjectStore instance is returned.
Implementation
external IDBObjectStore objectStore(String name);