DATABASE CONNECTIVITY

JDBC Architecture

JDBC Architecture JDBC is Java application programming interface that allows the Java programmers to access database management system from Java code. It is developed by JavaSoft, a subsidiary of Sun Microsystems. Java Database Connectivity in short called as JDBC. It is a java API which enables the java programs to execute SQL statements. It is an application programming interface that defines how …

JDBC Architecture Read More »

JDBC Driver

JDBC Driver JDBC Driver Manager The JDBC DriverManager class defines objects which can connect Java applications to a JDBC driver. DriverManager has traditionally been the backbone of the JDBC architecture. It is quite small and simple. This is a very important class. Its main purpose is to provide a means of managing the different types of JDBC database driver. …

JDBC Driver Read More »