How application creates a connection »
By Ramakrishna on Oct 4, 2008 in Java Connections | 0 Comments
Q) How can your application creates a connection?
Rep) Connection is an Interface. The JDBC Driver provides a class implementing java.sql.connection interface
When our application calls DriverManager.getConnection method it internally calls the ConnectMethod provide by the JDBC Driver Vender in the Driver class. The code of the Connect Method connects to the DBServer and Creates an object [...]
