JDBC, established connection with database. JDBC-Ep:1

Опубликовано: 16 Июль 2026
на канале: Ajoy Debnath
192
13

Hi,
Hope you are all doing great. Let's learn together.
Join Telegram: 📲 https://t.me/contactajoydebnath

Chapters ❤
0:00 Introduction
00:25 About JDBC
01:55 Theory
11:16 Code Implementation
24:53 Is it mandatory to register the driver while working with JDBC
27:24 Class.forName


Note:
JDBC stands for Java Database Connectivity. JDBC is a Java API to connect and execute the query with the database. It is a part of JavaSE (Java Standard Edition). JDBC API uses JDBC drivers to connect with the database.

Video Links:
Core Java Playlist:
   • Core Java  

Spring Playlist:
   • Spring Framework  

Document Link -
https://docs.google.com/document/d/1U...


Like, Comment, Share, and Subscribe.
Thank you again.

Eclipse Download
https://www.eclipse.org/downloads/pac...

JDK Link:
https://www.oracle.com/java/technolog...

MySQL Connector JAR
https://mvnrepository.com/artifact/my...

MySQL Installer
https://dev.mysql.com/downloads/insta...

Connection Established

The JDBC API is a Java API that can access any kind of tabular data, especially data stored in a relational database.

Tabular Data : A tabular database, as the name implies is a database that is structured in a tabular form. It arranges data elements in vertical columns and horizontal rows. Each cell is formed by the intersection of a column and row.

JDBC helps you to write Java applications that manage these three programming activities:

1.Connect to a data source, like a database
2.Send queries and update statements to the database
3.Retrieve and process the results received from the database in answer to your query

Connection Interface:
A Connection is a session between a Java application and a database. The Connection interface is a factory of Statement, PreparedStatement, and DatabaseMetaData i.e. object of Connection can be used to get the object of Statement and DatabaseMetaData. The Connection interface provides many methods for transaction management like commit(), rollback(), etc.