About 304,000 results
Open links in new tab
  1. JDBC Tutorial

    JDBC stands for Java Database Connectivity, which is a standard Java API for database-independent connectivity between the Java programming language and a wide range of databases. The JDBC library includes APIs for each of the tasks mentioned below that are commonly associated with database usage.

  2. JDBC Tutorial - GeeksforGeeks

    Nov 20, 2023 · JDBC is a Java API or tool used in Java applications to interact with the database. It is a specification from Sun Microsystems that provides APIs for Java applications to communicate with different databases. Interfaces and Classes for JDBC API comes under java.sql package.

  3. Lesson: JDBC Basics (The JavaTutorials > JDBC Database Access) - 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 transactions

  4. 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 as proper drivers are provided.

  5. JDBC (Java Database Connectivity) - GeeksforGeeks

    Apr 17, 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. Because of JDBC, Java applications can easily work with different relational databases like MySQL, Oracle, PostgreSQL, and more. Explanation:

  6. JDBC in Java | Java Database Connectivity - Tpoint Tech

    Apr 21, 2025 · In this JDBC tutorial, we will learn four types of JDBC drivers, their advantages and disadvantages. In this JDBC tutorial, we will see the five steps to connect to the database in Java using JDBC. In this JDBC tutorial, we will connect a …

  7. JDBC Tutorial - Java Guides

    This is complete beginners to expert up-to-date JDBC 4.2 Tutorial. In this tutorial, we will learn the latest features added to JDBC 4,4.1 and 4.2 release. All the source code examples in this tutorial are developed using JDK 8 with JDBC 4.2.

  8. JDBC Tutorial - W3schools

    JDBC refers to the Java Database Connectivity. It provides java API that allows Java programs to access database management systems (relational database). The JDBC API consists of a set of interfaces and classes which enables java programs to execute SQL statements.

  9. JDBC Tutorials - Java Code Geeks

    Java Database Connectivity (JDBC) is a Java-based data access technology that defines how a client may access a database. It provides methods for querying and updating the data in a database. The JDBC classes are contained in the Java package i.e. java.sql and javax.sql .

  10. JDBC Tutorial – The ULTIMATE Guide (PDF Download) - Java

    Feb 3, 2015 · In this article we will explain the main JDBC components like Statements, Result Sets or Stored Procedures. JDBC needs drivers for the different databases that programmers may want to work with; we will explain this in detail and we will provide some examples.

  11. Some results have been removed