| Author |
Job of class Class in jdbc
|
vinoth ar
Greenhorn
Joined: Jan 07, 2009
Posts: 21
|
|
hi friends...
can you explain what is the job of class Class(i.e the class in Class.forName(..)); im jdbc..
thanks
|
vino...
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32833
|
|
It is actually the forName() method which does the work. forName() is a static method of Class; it causes the named class object to be loaded by a class loader. So the JDBC connection class is loaded into memory for access by the JVM.
The JDBC classes incorporate a static initialiser block, which is executed immediately after the class is loaded into memory; this static initialiser calls method which institute the actual connection.
|
 |
 |
|
|
subject: Job of class Class in jdbc
|
|
|