JAVASOFT FRAMEWORK

Three JBDC product components

 o the JBDC driver manager

The JDBC driver manager is the backbone of the JDBC architecture.It actually is quite small and simple, its primary function is to connect Java application ti the correct JDBC driver and then get out of the way.

 o the JDBC driver test suite

The JDBC driver test suite provides some confidence that JDBC drivers will run your program. Only drivers that pass the JDBC driver test suite can be designated JDBC COMPLIANT.

 o The JBDC-ODBC bridge

he JBDC-ODBC bridge allows ODBC drivers to be used as JDBC drivers. It was implemented as a way to get JDBC off the ground quickly, and long term will provide a way to access some of the less popular DBMSs if JDBC drivers are not implemented for them.



Back