1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

MySQL PostgreSQL SQLiteの概要

Last updated at Posted at 2021-12-19

#本記事の内容
本記事は表題の通り、3種類のデータベースに関して概要をまとめたものであり、筆者の備忘録的な記事となります。

#PostgreSQL
読み方:ポストグレエスキューエル。ポスグレ。

###説明
RDBMSにオブジェクト思考概念を導入したORDBMSの代表的製品。

移植が容易であり、日本語にも対応している。
#MySQL
読み方:マイエスキューエル。

###説明
高速性と堅牢性を兼ね備えたマルチユーザ・マルチスレッドのRDBMS。
世界的に広く使用されており、そのため関係記事が多く存在する。
また、日本語にも対応している。

#SQLite
読み方:エスキューライト。
###説明
著作権が放棄されており、誰でもが使用できる。
組み込み形式。
コンパクトで消費メモリが少ないため、処理能力が低いデバイスでも組み込み可能。

ATMなどの複数の端末からデータベースに操作を試みるようなシステムは、「クライアントサーバ型」である「PostgreSQL」、「MySQL」のどちらかを採用すべきです。逆にそのソフトウェア内で完結するようなデータのやり取りをしたい場合は、「SQLite」を採用します。

#参考記事
https://bigdata-tools.com/sql-db/

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?