This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Hello guys!!! I have a basic doubt. DriverManager is a class then why is not instantiated as other classes. For example we usually give as Connection con=DriverManager.getConnection("jdbc.odbc.dsn","username","password"); Why don't we give as DriverManager dm=new DriverManager(...) waiting for reply Thanks in advance.
Milind Mahajan
Ranch Hand
Joined: Oct 23, 2000
Posts: 77
posted
0
Hi, getConnection() method is a static method in DriverManager class. So, you don't need to instantiate it, to call the method. There are no visible constructors in DriverManager class. So, you cannot create an instance of it. I guess it is similar to Math class. Hope this helps. Milind