objectStore abstract method

ObjectStore objectStore(
  1. String name
)

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 ObjectStore instance is returned.

Implementation

ObjectStore objectStore(String name);