--- title: IDBDatabase.name slug: Web/API/IDBDatabase/name tags: - Database - IDBDatabase - IndexedDB - Property - Storage - name translation_of: Web/API/IDBDatabase/name ---

{{ APIRef("IDBDatabase") }}

IDBDatabaseインターフェイスのnameプロパティは、接続しているデータベース名を含む {{ domxref("DOMString")}}です。

構文

db.name

接続しているデータベース名を含む{{ domxref("DOMString")}}。

この例は接続しているデータベースと、DBのversionとnameプロパティを持つ{{domxref("IDBDatabase")}} オブジェクトの結果、そしてログを表示します。完全な例は、To-do Notifications app (view example live)を見てください。

// 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 name of the database, which should be "toDoList"
  console.log(db.name);
};

仕様

Specification Status Comment
{{SpecName('IndexedDB', '#widl-IDBDatabase-name', 'name')}} {{Spec2('IndexedDB')}}  

ブラウザ実装状況

{{Compat("api.IDBDatabase.name")}}

関連情報