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.

データベースを基本からまとめてみた【DB接続の仕組みとJDBCの基本】

Last updated at Posted at 2023-03-11

データベース接続の仕組み

①データベース(DB):データを整理・蓄積したもの
②JDBC:JavaプログラムとDBを繋ぐクラス・インターフェイスなどの集まり

  • JDBC API : JDKに含まれる
  • JDBCドライバ : DB開発元が公開
    ③SQL: DBを操作する言語 ※ SQL(Stuructred Query Language)
    ⇨ データベースを操作するために使われる構造化問い合わせ言語
※ JDBCがDBの違いを吸収するため、DBが異なってもJavaのプログラムはほぼ変わらない

image.png

参考サイト

【JavaDB1】DB接続の仕組みやJDBCとは何かを基本から理解しよう!
【IT初心者向け】JDBCとは?そのメリットやデータベース操作方法を解説!

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?