Hi All! Anyone can say me what means "Register the driver"?, where is registred? thnxaLot [ August 27, 2004: Message edited by: Erwin Morales ]
Erwin Morales<br />Ciudad de Mexico/Mexico City
Julian Kennedy
Ranch Hand
Joined: Aug 02, 2004
Posts: 823
posted
0
Hi Erwin,
"Register the driver" means load a class that implements the java.sql.Driver interface in the JVM. This is referred to as registering the Driver with the DriverManager.
When a Driver class is loaded, it should create an instance of itself and register it with the DriverManager. This means that a user can load and register a driver by calling
For more information see Sun's JDBC Tutorial or browse the Javadoc for the java.sql package.