What will the command
Class.forName("oracle.jdbc.driver.OracleDriver")
will exactly do while connecting to a Oracle database? Is there an alternate way of doing the same thing?
Thanks
|
|
It obtains a reference to the class object with the FQCN (fully qualified class name) It doesn't "do" anything in terms of connecting to a database, aside from ensure that the specified class is loaded by the current classloader. There is no fundamental difference between writing
From The Java Tutorial:
Further reading (read: questions this is a dup of) |
|||||||||||||
|
|
From the Java JDBC tutorial:
So, if you're using the Oracle 11g (11.1) driver with Java 1.6, you don't need to call |
|||||
|
|
It registers the driver; something of the form:
|
|||
|
|
|
This command loads class of Oracle jdbc driver to be available for DriverManager instance. After the class is loaded system can connect to Oracle using it. As an alternative you can use registerDriver method of DriverManager and pass it with instance of JDBC driver you need. |
|||
|
|
|
Pre Java 6 the If you are using Java 6 you no longer need to do this. |
|||
|
|
|
An alternative would to use the jdbc.drivers System property to specify your required drivers(s) on the command line when you start the JVM. |
|||
|
|
|
Use oracle.jdbc.OracleDriver, not oracle.jdbc.driver.OracleDriver. You do not need to register it if the driver jar file is in the "WEB-INF\lib" directory, if you are using Tomcat. Save this as test.jsp and put it in your web directory, and redeploy your web app folder in Tomcat manager:
|
|||
|
|