i just learnt about java.sql package. it uses class.forName() to dynamically load the driver which extends DriverManager. then we get connection using DriverManager.getConnection() method.
so how does the entire thing work? how does DriverManager class know how to get the connection without using class name of the actual driver.
Also can we use Class.forName() for custom applications... if this is explained with an example i will be very happy..........