Copilot
Your everyday AI companion
  1. JDBC is designed to make Java applications database agnostic. That is, a program written using JDBC will work with any JDBC compliant database.
    www.theserverside.com/definition/Java-Database-Connectivity-JDBC
    www.theserverside.com/definition/Java-Database-Connectivity-JDBC
    Was this helpful?
  2. People also ask
    JDBC (Java Database Connectivity) is the Java API that manages connecting to a database, issuing queries and commands, and handling result sets obtained from the database. Released as part of JDK 1.1 in 1997, JDBC was one of the earliest libraries developed for the Java language.
    It is used to write programs required to access databases. JDBC, along with the database driver, can access databases and spreadsheets. The enterprise data stored in a relational database (RDB) can be accessed with the help of JDBC APIs. JDBC is an API (Application programming interface) used in Java programming to interact with databases.
    Java Database Connectivity ( JDBC) is an application programming interface (API) for the Java programming language which defines how a client may access a database. It is a Java-based data access technology used for Java database connectivity. It is part of the Java Standard Edition platform, from Oracle Corporation.
    What is JDBC? The Java Database Connectivity (JDBC) API is the industry standard for database-independent connectivity between the Java programming language and a wide range of databases—SQL databases and other tabular data sources, such as spreadsheets or flat files. The JDBC API provides a call-level API for SQL-based database access.
  3. What is JDBC? Introduction to Java Database Connectivity

  4. See more
    See more
    See all on Wikipedia
    See more

    Java Database Connectivity - Wikipedia

    Java Database Connectivity (JDBC) is an application programming interface (API) for the Java programming language which defines how a client may access a database. It is a Java-based data access technology used for Java database connectivity. It is part of the Java Standard Edition platform, from … See more

    Sun Microsystems released JDBC as part of Java Development Kit (JDK) 1.1 on February 19, 1997. Since then it has been part of the Java Platform, Standard Edition (Java SE). See more

    Since JDBC ('Java Database Connectivity') is mostly a collection of interface definitions and specifications, it allows multiple … See more

    JDBC drivers are client-side adapters (installed on the client machine, not on the server) that convert requests from Java programs to a … See more

    JDBC API Guide
    java.sql API Javadoc documentation
    javax.sql API Javadoc documentation See more

    February 19, 1997
    Sun Microsystems released JDBC as part of Java Development Kit (JDK) 1.1.
    2002
    JDBC 3.0 was included in J2SE 1.4.
    2005
    JSR 114 specifies the JDBC Rowset additions.
    2006
    JDBC 4.0 was included in Java SE 6.
    2011
    JDBC 4.1 was included in Java SE 7.
    2014
    JDBC 4.2 was included in Java SE 8.
    2017
    JDBC 4.3 was included in Java SE 9.

    When a Java application needs a database connection, one of the DriverManager.getConnection() methods is used to create a … See more

    Wikipedia text under CC-BY-SA license
    Feedback
  5. Lesson: JDBC Introduction (The Java™ Tutorials > JDBC Database

  6. Oracle JDBC Frequently Asked Questions

  7. Getting Started - Oracle Help Center

  8. Introduction to JDBC (Java Database Connectivity)

    WEBNov 17, 2023 · JDBC is an API (Application programming interface) used in Java programming to interact with databases. The classes and …

    • Estimated Reading Time: 5 mins
    • Recommendation for JDBC SQL client tool - Stack Overflow

    • Java Database Connectivity (JDBC): Integrating with Databases

    • Getting Started (The Java™ Tutorials > JDBC Database Access

    • JDBC in Java: A Complete Guide to Database Connectivity with