driver = (Driver) serviceRegistry.getService(
ClassLoaderService.class ).classForName( driverClassName )
.newInstance();
}
catch ( Exception e ) {
throw new ClassLoadingException(
"Specified JDBC Driver " + driverClassName
+ " could not be loaded", e
);
}
}