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 can I determine where a given table is referenced via foreign keys?
RowSetInternal caller and returns void. What can I do in the readData method?
What is preparedstatement in jdbc?
What is execute(), executeUpdate() and executeQuery() methods?
What is serialization and deserialization in java programming?
How do I receive a ResultSet from a stored procedure?
What is the difference between jdbc and jndi?
What is Apache DBCP API?
How do you determine the sensitivity of the ResultSet object?
what is call level interface?
commit() and rollback() methods are defined in which interface?
What is CLOB and BLOB datatypes in JDBC?