.

JDBC


Reading time: less than 1 minute

JDBC (Java Database Connectivity) is a standard Java API that provides a uniform interface for applications to connect and interact with relational databases. It consists of a set of classes and interfaces written in Java that standardize database operations like:

  • Establishing connections
  • Executing SQL queries
  • Handling result sets
  • Managing transactions
  • Processing database metadata

JDBC drivers implement this API for specific database systems, allowing Java applications to be database-agnostic at the code level. The driver handles the translation between JDBC calls and database-specific protocol commands.

One really good source of JDBC drivers is the list used by DBeaver.

Common JDBC drivers

Database Driver URL
PostgreSQL https://jdbc.postgresql.org/
Oracle https://www.oracle.com/database/technologies/appdev/jdbc-downloads.html

Citation

If you find this work useful, please cite it as:
@article{yaltirakli,
  title   = "JDBC",
  author  = "Yaltirakli, Gokberk",
  journal = "gkbrk.com",
  year    = "2025",
  url     = "https://www.gkbrk.com/jdbc"
}
Not using BibTeX? Click here for more citation styles.
IEEE Citation
Gokberk Yaltirakli, "JDBC", February, 2025. [Online]. Available: https://www.gkbrk.com/jdbc. [Accessed Feb. 09, 2025].
APA Style
Yaltirakli, G. (2025, February 09). JDBC. https://www.gkbrk.com/jdbc
Bluebook Style
Gokberk Yaltirakli, JDBC, GKBRK.COM (Feb. 09, 2025), https://www.gkbrk.com/jdbc

Comments

© 2025 Gokberk Yaltirakli