May 2001
Intermediate to advanced
1088 pages
30h 13m
English
Figure 3.5 illustrates the major classes of the JDBC API and how they relate to each other.

Of the major JDBC components, only DriverManager is a concrete Java class. The rest of the components are Java interfaces that are implemented by the various driver packages.
The DriverManager class keeps track of the available JDBC drivers and creates database connections for you. Although the JDBC driver itself creates the database connection, you usually go through the DriverManager to get the connection. That way you never need to deal with the actual ...
Read now
Unlock full access