Find the difference between loading and registering the drivers..

Dear Sir..Could you please help me to find the difference between two activities..1.Loading the drivers 2.Registering the driversWhat's the difference between loading and registeing the drivers and what activities take place by the JVM to do it all.
[285 byte] By [Deepak_TCSa] at [2007-11-27 8:43:38]
# 1

Essentially, for the purpose for which you use them, there is no difference. You are simply getting the class loaded, so that subsequent attempts to get a Connection from the DriverManager will work.

Edit:

And please don't double post, or in this case Triple post:

http://forum.java.sun.com/thread.jspa?threadID=5188214&tstart=0

http://forum.java.sun.com/thread.jspa?threadID=5188223&tstart=0

masijade.a at 2007-7-12 20:44:07 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 2
> And please don't double post, or in this case Triple> post:I see four. :D
aniseeda at 2007-7-12 20:44:07 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 3
Sorry..Double posted has done by mistake..
Deepak_TCSa at 2007-7-12 20:44:07 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 4
> > And please don't double post, or in this case> Triple> > post:> > I see four. :DI think the fourth one came after that message, but I could be mistaken. It has been known to happen (often). ;-)
masijade.a at 2007-7-12 20:44:07 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 5

> Dear Sir..

>

> Could you please help me to find the difference

> between two activities..

> 1.Loading the drivers

> 2.Registering the drivers

>

> What's the difference between loading and registeing

> the drivers and what activities take place by the JVM

> to do it all.

You load a class - it isn't specific to a driver.

That is part of java - not JDBC.

Normally JDBC drivers register themselves when the class is loaded. This is specific to the driver and has nothing to do with a user of the driver. It is only a concern to someone who must implement a driver.

jschella at 2007-7-12 20:44:07 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...