Java Series #11: Introduction to JDBC
What JDBC Actually Is?
JDBC is basically the middleman between your Java code and any relational database.Without JDBC, your Java app has no idea how to talk to MySQL, PostgreSQL, Oracle, etc.
Think of JDBC as:
Java → JDBC → Database
It translates ...
abheeshta-java.hashnode.dev6 min read