How to create Connection interface object because it is
Interface , Interface is not instansiated?
Answer Posted / 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 |
Post New Answer View All Answers
What are the factors that the jdbc driver performance depends upon?
What port does jdbc use?
How many ways that we can view a result set?
What is isolation level? How to set it?
How to check jdbc driver version in websphere?
Why did my jdbc code throw a rollback sqlexception?
What are the components of jdbc?
password, is stored in as plain text. What can I do to protect my passwords?
Name the types of jdbc drivers.
How do I check in my code whether a maximum limit of database connections have been reached?
Expalin the method of calling a stored procedure from jdbc.
How can I connect mysql or oracle with java?
What is the full form of jdbc?
What is jdbc stand for?
Why is jdbc needed?