Courses
Tutorials
Interview Prep
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
Java
9.4K+ articles
Misc
7.7K+ articles
Difference Between
3.1K+ articles
Java Programs
1.5K+ articles
Advance Java
724+ articles
mysql
355+ articles
MySQL
290+ articles
java-servlet
91+ articles
java-advanced
48+ articles
JDBC
88 posts
Recent Articles
Popular Articles
Connection Interface in Java JDBC
Last Updated: 24 April 2026
The Connection interface in Java JDBC represents a session between a Java application and a database. It is used to establish communication, execute SQL queries, and manag...
read more
Java
JDBC
Driver Interface in JDBC
Last Updated: 06 April 2026
The Driver interface in JDBC is a core interface that enables Java applications to communicate with databases. It acts as a bridge between the application and the database...
read more
Java
JDBC
JDBC Interview Questions
Last Updated: 14 February 2026
JDBC (Java Database Connectivity) is an important topic in Advanced Java interviews. It is used to connect Java applications with databases and perform operations like ins...
read more
JDBC
Advance Java
JDBC (Java Database Connectivity) Interview Questions
Last Updated: 12 February 2026
JDBC (Java Database Connectivity) is an important topic in Advanced Java interviews. It is used to connect Java applications with databases and perform operations like ins...
read more
JDBC
Advance Java
Update and Delete Operations Using JDBC in Java
Last Updated: 01 August 2025
The UPDATE operation modifies existing records in a table, usually with a WHERE clause to target specific rows. Without it, all records may be updated. The DELETE operatio...
read more
Java
JDBC
JDBC Result Set
Last Updated: 06 April 2026
The JDBC ResultSet is an object that stores the result of a SQL query executed on a database. It maintains a cursor to navigate through rows and allows retrieval of data f...
read more
Java
Picked
JDBC
How to Perform a Cascading Delete Using JDBC?
Last Updated: 23 July 2025
In JDBC, the Cascading Delete Operation is a technique of databases that are used to delete the record parent table. In this article, we will learn How to perform a cascad...
read more
Java
Picked
JDBC
Java Examples
How to Retrieve Database Information using Database Meta Data in JDBC?
Last Updated: 26 April 2024
JDBC (Java Database Connectivity) is the standard Java API for connecting and interacting with relational databases. It allowed to the Java applications to execute the SQL...
read more
Java
Java Programs
Picked
JDBC
Java Examples
How to Enforce Referential Integrity using Foreign Keys in JDBC?
Last Updated: 26 April 2024
Enforcing referential integrity is the fundamental aspect of maintaining data consistency and integrity in a relational database. Referential integrity ensured that the re...
read more
Java
Java Programs
Picked
JDBC
Java Examples
JDBC New Features
Last Updated: 23 July 2025
JDBC stands for Java Database Connectivity. It is a crucial technology for Java developers and it facilitates the interaction between the Java applications and the databas...
read more
Java
Picked
JDBC
How to use the JDBC Savepoint Interface for Nested Transactions?
Last Updated: 23 July 2025
The JDBC Savepoint Interface offers the mechanism for establishing the points within the transactions and allowing for partial rollback if needed to the user. Transactions...
read more
Java
Java Programs
Picked
JDBC
How to Execute a SQL Query with Named Parameters in JDBC?
Last Updated: 23 July 2025
Executing the SQL (Structured Query Language) query with named parameters in JDBC (Java Database Connectivity) is the fundamental feature of the database interaction in Ja...
read more
DBMS
Picked
JDBC
SQL-Query
Java Examples
How to handle Duplicate Key Violations in JDBC?
Last Updated: 23 July 2025
The JDBC is the Application Programming Interface for Java programming language. In this article, we will learn how to handle duplicate key violations in JDBC by using try...
read more
DBMS
Picked
JDBC
Java Examples
How to use an ArrayList as a Prepared Statement Parameter?
Last Updated: 23 July 2025
ArrayList is part of the Java Collection Framework and In this article, we will learn how to use an ArrayList as a prepared statement parameter.Prepared StatementIt is a s...
read more
Java
Java Programs
Picked
JDBC
Java-ArrayList
Java Examples
How to Get the Insert ID in JDBC?
Last Updated: 23 July 2025
In Java, for getting the insert ID in JDBC, we have built-in methods like getGeneratedKeys(). This method can be able to get the inserted ID in JDBC. Here, in this article...
read more
Java
Java Programs
Picked
JDBC
1
2
3
4
5
6