Mahmoud Parsian is a software architect and author. He leads Illumina's Big Data team focused on large-scale genome analytics. He is a practicing software professional with 30+ years of experience as ...
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.
The Java Database Connectivity (JDBC) API provides universal data access from the Java programming language. Using the JDBC API, you can access virtually any data source, from relational databases to spreadsheets and flat files. JDBC technology also provides a common base on which tools and alternate interfaces can be built.
JDBC API is a Java API that can access any kind of tabular data, especially data stored in a Relational Database. JDBC works with Java on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX.
Complete JDBC tutorial covering database connectivity, drivers, statements, and result handling with practical examples for beginners.
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. It provides methods to query and update data in a database, and is oriented ...
This tutorial explains, what is JDBC, its available versions, types of Drivers in Java JDBC, architecture and components of JDBC.
A JDBC driver is a JDBC API implementation used for connecting to a particular type of database. There are several types of JDBC drivers: Type 1 – contains a mapping to another data access API; an example of this is the JDBC-ODBC driver Type 2 – is an implementation that uses client-side libraries of the target database; also called a native-API driver Type 3 – uses middleware to convert ...