aspose file tools
The moose likes JDBC and the fly likes How does JDBC work? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Databases » JDBC
Reply Bookmark "How does JDBC work?" Watch "How does JDBC work?" New topic
Author

How does JDBC work?

James Leong
Greenhorn

Joined: Dec 18, 2002
Posts: 3
Hi,
I was wondering how JDBC works? Currently, I do 2 things to get a Connection:
a. load the driver, i.e. Class.forName(driverName)
b. get a connection through a static method in DriverManager, i.e. DriverManager.getConnection(url, user, passwd);
In the case, when a few different jdbc drivers are loaded, i.e. we need access through different databases, how does the program arbitrate between which driver class to use? Is it through the url?
If so, is it true that when the driver class is loaded it registers the url that it will listen to the system?
Thanks!
vishwas bansal
Greenhorn

Joined: Dec 19, 2002
Posts: 6
you are very correct ,class.forname actually register and instantiate the driver class.you can have as much driver as you want.consider it to be a hashtable of drivers.when we give url it goes to check every driver class instance if it identifies the url and on success results the connection.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: How does JDBC work?
 
Similar Threads
Class.forname and DriverManager
Selection of Driver for Connection
Urgent: Driver class loaded but getting no suitable driver found exception
need help on dynamic loading of jdbc driver
loading driver in JSP