How to create Connection interface object because it is
Interface , Interface is not instansiated?

Answers were Sorted based on User's Feedback



How to create Connection interface object because it is Interface , Interface is not instansiated?..

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

How to create Connection interface object because it is Interface , Interface is not instansiated?..

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

How to create Connection interface object because it is Interface , Interface is not instansiated?..

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

How to create Connection interface object because it is Interface , Interface is not instansiated?..

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

How to create Connection interface object because it is Interface , Interface is not instansiated?..

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

How to create Connection interface object because it is Interface , Interface is not instansiated?..

Answer / guest

Connection con=DriverManager.getConnection
("jdbc:odbc:MydataSource);"



Is This Answer Correct ?    7 Yes 4 No

How to create Connection interface object because it is Interface , Interface is not instansiated?..

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

How to create Connection interface object because it is Interface , Interface is not instansiated?..

Answer / jk.yadav008

no answer

Is This Answer Correct ?    2 Yes 9 No

How to create Connection interface object because it is Interface , Interface is not instansiated?..

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

Post New Answer

More JDBC Interview Questions

What are different types of JDBC Drivers?

0 Answers  


What does it mean to "materialize" data?

0 Answers  


How does jdbc driver work?

0 Answers  


How to insert an image or raw data into database?

0 Answers  


How do you create Connection?

5 Answers   HCL,






What is Type-2 Driver and when this driver is used?

2 Answers  


What is jdbc servlet?

0 Answers  


What are the three parts of a jdbc url?

0 Answers  


How do I stop nullpointerexception?

0 Answers  


JDBC Drivers properties?

1 Answers   Infosys,


Give an example for getXXX method?

0 Answers  


List some new features available in jdbc 4.0?

0 Answers  


Categories