aspose file tools
The moose likes JDBC and the fly likes Does the DriverManager use a HashMap or a HashTable? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Databases » JDBC
Reply Bookmark "Does the DriverManager use a HashMap or a HashTable?" Watch "Does the DriverManager use a HashMap or a HashTable?" New topic
Author

Does the DriverManager use a HashMap or a HashTable?

Ashutosh Limaye
Ranch Hand

Joined: Oct 24, 2005
Posts: 58
I don't know whether my line of thinking is right or wrong...still

DirverManager stores all the drivers that are registered with it.

Now it must be using some Util.
The primary difference between the HashMap and HashTable is that one of them is thread safe...
So if they make DriverManager implement the non-threadsafe Util then it must be possible for different threads to access different drivers concurrently....
I know I'am sounding stupid....
P.S :p lease shut me up if you don't like what i post.

[ March 15, 2006: Message edited by: Ashutosh Limaye ]
[ March 15, 2006: Message edited by: Ashutosh Limaye ]
Maximilian Xavier Stocker
Ranch Hand

Joined: Sep 20, 2005
Posts: 381
DriverManager uses a Vector.

And most all of the methods (registerDriver and getConnection for example) are synchronized.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Does the DriverManager use a HashMap or a HashTable?
 
Similar Threads
adding a servlet
Rangarajan Balasubramanian
Package Problem...
Custom multi-field array
Not loading the JDBC driver programatically