How to create Connection interface object because it is
Interface , Interface is not instansiated?
Answers were Sorted based on User's Feedback
Answer / mohd gousuddin
Connection is an interface which can not be instantiated but
can be referenced. The DriverManager Class is a Factory
class which contains a factory method called
getConnection(). this method creates and returns connection
object, that object can be assigned to Connection interface
referance variable.
Is This Answer Correct ? | 22 Yes | 2 No |
Answer / satish.svu
Connection is an interface, but the implementation class is
provided by the third party,
Here Connection interface object means the implementation
class object
Is This Answer Correct ? | 18 Yes | 0 No |
Answer / kranthikumar.ch
Connection is Interface which cannot be instantiated but
can be referenced.
The DriverManager Class can provide the implementation for
that Connection interface.
Means rather than creating creating an object to
DriverManager Class creating reference to Connection
interface.
Is This Answer Correct ? | 13 Yes | 3 No |
Answer / raja
write a connection interface class and sub class implemente
a interface .Now create object of interfacelike this
interface in=new SubclassName();
Is This Answer Correct ? | 14 Yes | 7 No |
Answer / venkateswararao
connection interface is provided by the java , i.e they only
gives the interface but not implemented . this interface is
implemented by the oracle vendors ,So interface class is
implemented by data base vendors . So these methods are used
to connect data base
Connection con=Drivermanager.getConnection("url
path","username","password");
get connection is static method , So this method is calling
by DriverManager class
Is This Answer Correct ? | 7 Yes | 0 No |
Answer / guest
Connection con=DriverManager.getConnection
("jdbc:odbc:MydataSource);"
Is This Answer Correct ? | 7 Yes | 4 No |
Answer / .t.v.harish
Connection is an interface from java.sql package, for which
getConnection(_) was return an anonymous inner class object
of the Connection interface.
Note:- Anonymous inner class is a nameless inner class,
which can be sued to provide an implementation either for
the interfaces or for abstract classes.
T.V.HARISH
Is This Answer Correct ? | 4 Yes | 3 No |
Answer / anand
We can not create object to any interface but we can create a reference variable to interface. Connection is an interface released by SUN micro system.Once interface released anybody in this world can provide implementation,provide implementation means writing down the code for all the methods of that inteface. As we know that Connection is an interface relased by sun micro system and Oracle corporation provide implementation class to that inteface and this class is called "Connetion class".We can create the reference variable to Connection interface and this reference variable hold the object of class which provide the implementation to Connection class.
DriverManager is also an interface and this interface contains a static method getConnection(), this method returns the object of a class which provide implementation of Connection interface.
Is This Answer Correct ? | 0 Yes | 7 No |
How do I find ojdbc jar version?
How many types of JDBC Drivers are present and what are they?
What are the different types of statements in jdbc?
Explain about Join?
What is resultset in jdbc with example?
What is jdbc and explain jdbc architecture?
What is JDBC Savepoint? How to use it?
What do you mean by database connection pooling?
What do you understand by jdbc driver and explain its types?
Can you create an index on sex column where there is M or F?
why are using type4 driver in realtime projects?
Give steps to connect to the db using jdbc?