diff options
Diffstat (limited to 'files/ja/glossary/database/index.html')
-rw-r--r-- | files/ja/glossary/database/index.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/files/ja/glossary/database/index.html b/files/ja/glossary/database/index.html new file mode 100644 index 0000000000..325a9fd9cb --- /dev/null +++ b/files/ja/glossary/database/index.html @@ -0,0 +1,27 @@ +--- +title: Database +slug: Glossary/Database +tags: + - Database + - Glossary + - Sql +translation_of: Glossary/Database +--- +<p><span class="seoSummary"><strong>データベース</strong> は、データの整理や収集を行い保存をするシステムです。データベースを使うことで検索、構造化、拡張などの作業を簡単に行うことができます。</span></p> + +<p>ウェブ開発で使用されるほとんどのデータベースはリレーショナルデータベース (RDBMS) を使用してデータを整理し、{{Glossary("SQL")}} と呼ばれるプログラミング言語を使用します。ただし、一部のデータベースは NoSQL と呼ばれる非リレーショナルベースを使用しています。このデータベースはデータを整理せず収集のみを行います。</p> + +<p>有名な RDBMS には、<em>MySQL</em> (またはそのフォークである <em>MariaDB</em>)、<em>SQL Server</em> および<em>Oracle Database</em> があります。一方、有名な NoSQL の例としては、<em>MongoDB</em>、<em>Cassandra</em>、<em>Redis</em> などがあります。</p> + +<p>ブラウザー上で動く {{glossary("IndexedDB")}} と呼ばれる独自データベースシステムもあります。</p> + +<section class="Quick_links" id="Quick_Links"> +<ol> + <li>{{Interwiki("wikipedia", "データベース")}} (Wikipedia) + <ol> + <li>{{Glossary("IndexedDB")}}</li> + <li>{{Glossary("SQL")}}</li> + </ol> + </li> +</ol> +</section> |