May 2001
Intermediate to advanced
1088 pages
30h 13m
English
The Core JDBC package is part of the standard Java Development Kit. There is also an additional JDBC package that is part of J2EE that addresses some of the enterprise-level uses of JDBC. These extensions belong to the javax.sql package as opposed to java.sql.
One of the irritating parts of JDBC is the way to load drivers. It can be difficult to reconfigure an application to use a different database. Using the standard JDBC API, you must use a specific JDBC URL to access a database. The Optional JDBC package includes an alternative to the DriverManager class for creating database connections.
A DataSource object works like the DriverManager class, it has a getConnection method and also a getLogWriter method. ...
Read now
Unlock full access