How to create Connection interface object because it is
Interface , Interface is not instansiated?
Answer Posted / .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 |
Post New Answer View All Answers
How can I manage special characters when I execute an insert query?
How do I load a database driver with JDBC 4.0 / Java 6?
Give a way to check that all result sets have bin accessed and update counts are generated by execute method.
What are the different types of locking in JDBC?
What are the considerations for deciding on transaction boundaries?
How can you use preparedstatement in jdbc?
What is the full form of jdbc?
Explain the importance of drivermanager.
What is jdbc template?
How to use JDBC API to call Stored Procedures?
What is the difference between jdbc and odbc?
What is JDBC Driver interface?
How many locking systems are there in jdbc?
What is odbc jdbc?
How do I retrieve a whole row of data at once, instead of calling an individual ResultSet.getXXX method for each column?