From 03385cc9f4f157cec2e5fd05f35e6af646055908 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Tue, 14 Sep 2021 11:07:46 +0900 Subject: Web/API以下の文書内のリンクURLを正規化 (#2360) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - /en-US へのリンクを /ja へのリンクに修正 - /ja が付いていないものに /ja を付加 - MDN内のリンクが完全URLの場合、 /ja/docs からのURLに修正 --- files/ja/web/api/idbdatabase/index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'files/ja/web/api/idbdatabase/index.html') diff --git a/files/ja/web/api/idbdatabase/index.html b/files/ja/web/api/idbdatabase/index.html index 4b71231d6b..45333d5080 100644 --- a/files/ja/web/api/idbdatabase/index.html +++ b/files/ja/web/api/idbdatabase/index.html @@ -15,10 +15,10 @@ translation_of: Web/API/IDBDatabase

IndexedDB APIのIDBDatabaseインターフェイスは、データベースへの接続を提供します。 IDBDatabaseオブジェクトで、データベースのtransactionを開き、データベースのオブジェクト(データ)を生成したり、操作したり、削除したりできます。このインターフェイスはデータベースのバージョンを取得したり、統合したりする唯一の方法を提供します。

-

Note: Everything you do in IndexedDB always happens in the context of a transaction, representing interactions with data in the database. All objects in IndexedDB — including object stores, indexes, and cursors — are tied to a particular transaction. Thus, you cannot execute commands, access data, or open anything outside of a transaction.

+

Note: Everything you do in IndexedDB always happens in the context of a transaction, representing interactions with data in the database. All objects in IndexedDB — including object stores, indexes, and cursors — are tied to a particular transaction. Thus, you cannot execute commands, access data, or open anything outside of a transaction.

メソッド

-

Inherits from: EventTarget

+

Inherits from: EventTarget

{{domxref("IDBDatabase.close")}}
@@ -46,11 +46,11 @@ translation_of: Web/API/IDBDatabase
{{domxref("IDBDatabase.version")}} {{readonlyInline}}
- 接続しているデータベースのバージョンを含む64-bit integer。データベースが初めて作られた場合、この属性は空文字である。
+ 接続しているデータベースのバージョンを含む64-bit integer。データベースが初めて作られた場合、この属性は空文字である。
{{domxref("IDBDatabase.objectStoreNames")}} {{readonlyInline}}
- 接続しているデータベースのobject stores名のリストを含む{{ domxref("DOMStringList") }} 。
+ 接続しているデータベースのobject stores名のリストを含む{{ domxref("DOMStringList") }} 。

イベントハンドラ

@@ -138,7 +138,7 @@ translation_of: Web/API/IDBDatabase

関連情報