About 115,000 results
Open links in new tab
  1. JDBC (Java Database Connectivity) - GeeksforGeeks

    Sep 15, 2025 · JDBC is an API that helps applications to communicate with databases. It allows Java programs to connect to a database, run queries, retrieve and manipulate data.

  2. JDBC - Sample, Example Code - Online Tutorials Library

    This chapter provides an example of how to create a simple JDBC application. This will show you how to open a database connection, execute a SQL query, and display the results.

  3. Lesson: JDBC Introduction (The Java™ Tutorials > JDBC ... - Oracle

    This JDBC Java tutorial describes how to use JDBC API to create, insert into, update, and query tables. You will also learn how to use simple and prepared statements, stored procedures and perform …

  4. JDBC in Java: A Detailed Guide - DEV Community

    Jul 31, 2025 · JDBC (Java Database Connectivity) is an API in Java that enables applications to interact with different databases. It acts as a bridge that allows Java programs to execute SQL queries, …

  5. Java JDBC Tutorials - CodeJava.net

    Oct 25, 2024 · The comprehensive JDBC tutorials for beginners: Learn Java database programming with real-world code examples.

  6. JDBC Tutorial - GeeksforGeeks

    Sep 10, 2025 · JDBC (Java Database Connectivity) is a standard Java API that allows Java applications to connect to relational databases. It provides a set of interfaces and classes to send SQL queries, …

  7. Java JDBC Tutorial: What Is JDBC (Java Database Connectivity)

    Apr 1, 2025 · Starting with the basics, this JDBC tutorial explains components, architecture, and types of drivers in Java Database Connectivity (JDBC): This tutorial explains what is JDBC, its versions …

  8. Lesson: JDBC Basics (The Java™ Tutorials > JDBC Database Access) - Oracle

    In this lesson you will learn the basics of the JDBC API. Getting Started sets up a basic database development environment and shows you how to compile and run the JDBC tutorial samples.

  9. Introduction to JDBC - Baeldung

    Jan 8, 2024 · In this article, we’re going to take a look at JDBC (Java Database Connectivity) which is an API for connecting and executing queries on a database. JDBC can work with any database as long …

  10. A Comprehensive Guide to JDBC in Java: How It Works and best …

    Nov 22, 2024 · This guide dives deeply into JDBC, explaining its components, how it works under the hood, and why things are designed the way they are. We’ll also include Java code snippets to …