Which is the difference from forName method vs registerDriver to load and register a JDBC driver?
|
Most JDBC Driver classes register themselves in their static initializers by calling
Note that in JDBC 4 you should not need either of those if your JDBC driver is up-to-date, as drivers can be found using the service location mechanisms instead (i.e. simply leave out that call and open your connection as usual). See the documentaton of
|
|||||||||||||
|
|
Never call
|
|||||
|
|
In additaion to what Joachim Sauer already mentioned about JDBC 4 drivers, note that in practice you usually want to inject either an EntityManager (JPA) or a pooled DataSource (and use JdbcTemplate of Spring). |
|||||
|
registerDriverrequires the driver to be available at compile time. Failing so (availability) on runtime would result in NoClassDefFoundError (which you usually would not like to deal with).Class.forNameimplies late binding and doesn't require the driver to be available on compile time. – bestsss Mar 30 '11 at 9:04