--- title: IDBDatabase.objectStoreNames slug: Web/API/IDBDatabase/objectStoreNames tags: - Database - IDBDatabase - IndexedDB - Property - Storage - objectStoreNames translation_of: Web/API/IDBDatabase/objectStoreNames ---
{{ APIRef("IDBDatabase") }}
{{domxref("IDBDatabase")}}インターフェイスのobjectStoreNames
プロパティは、現在接続しているデータベースのobject stores名のリストを含む{{ domxref("DOMStringList") }}です。
db.objectStoreNames
現在接続しているデータベースのobject stores名のリストを含む{{ domxref("DOMStringList") }}。
// Let us open our database var DBOpenRequest = window.indexedDB.open("toDoList", 4); // these two event handlers act on the database being opened successfully, or not DBOpenRequest.onerror = function(event) { note.innerHTML += '<li>Error loading database.</li>'; }; DBOpenRequest.onsuccess = function(event) { note.innerHTML += '<li>Database initialised.</li>'; // store the result of opening the database in the db variable. This is used a lot below db = DBOpenRequest.result; // This line will log the version of the connected database, which should be // an object that looks like { ['my-store-name'] } console.log(db.objectStoreNames); };
Specification | Status | Comment |
---|---|---|
{{SpecName('IndexedDB', '#widl-IDBDatabase-objectStoreNames', 'objectStoreNames')}} | {{Spec2('IndexedDB')}} |
{{Compat("api.IDBDatabase.objectStoreNames")}}