objectStore method

IDBObjectStore objectStore(
  1. String name
)

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);