Java Class.forName(String className) and JDBC
A reader asked a question via a comment a couple months ago that I didn’t really have an answer for (and had always kind of wondered the same thing). In the original post (which showed how to use JDBC with ColdFusion), I used the following snippet of code:
Class.forName(”jdbc.DriverXYZ”);
Connection con = DriverManager.getConnection(url,
”myLogin”, “myPassword”);
and the reader wanted [...]