deleteObjectStore method

void deleteObjectStore(
  1. String name
)

The deleteObjectStore() method of the IDBDatabase interface destroys the object store with the given name in the connected database, along with any indexes that reference it.

As with IDBDatabase.createObjectStore, this method can be called only within a versionchange transaction.

Implementation

external void deleteObjectStore(String name);