News

Get an overview of JDBC's architecture, then learn how to connect to a database and handle SQL queries and responses with PreparedStatements, transactions, connection pooling, and more.
So it is possible to access an ODBC database using JDBC. Types of JDBC drivers. The JDBC-ODBC bridge is referred to as the Type 1 JDBC driver. There are four types, with the distinctions being: The ...
In this article, Nitin Nanda and Sunil Kumar explain JDBC's driver architecture, outline type 3 JDBC drivers' three-tier model, and show how to create your own type 3 JDBC driver. Topics Spotlight ...
To connect to a database from a Java program, you must use a JDBC (Java Database Connectivity) driver made specifically for the database to which you want to connect. Every vendor provides a ...
I am working on a database application that needs to access some .dbf files that were created with FoxPro. Are there special drivers I am going to need to use JDBC to access these files through Java?