aboutsummaryrefslogtreecommitdiff
path: root/files/zh-tw/glossary/indexeddb/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-tw/glossary/indexeddb/index.html')
-rw-r--r--files/zh-tw/glossary/indexeddb/index.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/files/zh-tw/glossary/indexeddb/index.html b/files/zh-tw/glossary/indexeddb/index.html
new file mode 100644
index 0000000000..3da56fa08c
--- /dev/null
+++ b/files/zh-tw/glossary/indexeddb/index.html
@@ -0,0 +1,20 @@
+---
+title: IndexedDB
+slug: Glossary/IndexedDB
+tags:
+ - API
+ - Sql
+ - 'l10n:priority'
+ - 撰寫程式
+ - 術語表
+ - 資料庫
+translation_of: Glossary/IndexedDB
+---
+<p>IndexedDB 是一個用來在瀏覽器內儲存大型數據結構,並對其建立索引以高效查詢的 Web {{glossary("API")}}。類似基於 {{glossary("SQL")}} 的 <a href="https://en.wikipedia.org/wiki/Relational_database_management_system" title="Relational DataBase Management System">關連式資料庫管理系統(RDBMS)</a>, IndexedDB 是一套交易式資料庫系統。然而,它使用 {{glossary("JavaScript")}} 物件而非固定欄位的資料表來記錄資料。</p>
+
+<h2 id="了解更多">了解更多</h2>
+
+<ul>
+ <li>MDN 上的 {{domxref('IndexedDB_API','IndexedDB API','',1)}}</li>
+ <li><a href="http://w3c.github.io/IndexedDB/">W3C 的 IndexedDB 標準</a></li>
+</ul>