The database connection can be done by the following days:-
1) DriverManager.getConnection 2) Class.forName
I wanna know the difference between the two and is there any other way to do the database connection and what for we are using Class.forName to do the database connection.
bhuvi
Srinivasa Raghavan
Ranch Hand
Joined: Sep 28, 2004
Posts: 1228
posted
0
Hi For getting the connection using DriverManager class, an instane of the driver is required in the registerDriver method. But Class.forName returns the Class object associated with the class or interface with the given string name, so you can even tell the driver to be used by your program using the property file.
your question is not general at all, and can therefore not be answered in an easy / obvious way.
DriverManager.getConnection() returns an object (as described in the DriverManger documentation of your database). Probably a Connection-Object ;-) That's fix atcompile time.
Class.forName() returns a reference to a class object. Dynamically determined at run time.
The latter has no specific relation to a DB-connection. But it can be used to get a db connection (and all other classes in your project).
The soul is dyed the color of its thoughts. Think only on those things that are in line with your principles and can bear the light of day. The content of your character is your choice. Day by day, what you do is who you become. Your integrity is your destiny - it is the light that guides your way. - Heraclitus
by calling the method Class.forName. This explicitly loads the driver class. loading the class causes an instance to be created and also calls DriverManager.registerDriver with that instance as the parameter, then it is in the DriverManager's list of drivers and available for creating a connection.
DriverManager.getConnection
Once the Driver classes have been loaded and registered with the DriverManager class, they are available for establishing a connection with a database. When a request for a connection is made with a call to the DriverManager.getConnection method, the DriverManager tests each driver in turn to see if it can establish a connection.
It may sometimes be the case that more than one JDBC driver is capable of connecting to a given URL In such cases, the order in which the drivers are tested is significant because the DriverManager will use the first driver it finds that can successfully connect to the given URL.
First the DriverManager tries to use each driver in the order it was registered. (The drivers listed in jdbc.drivers are always registered first.) It will skip any drivers that are untrusted code unless they have been loaded from the same source as the code that is trying to open the connection.
Shailesh
Gravitation cannot be held responsible for people falling in love ~ Albert Einstein