In JDBC, All the API?s are interfaces? Where is the actual
implementation?
Answer Posted / rajendra
JDBC accomplishes its goals through a set of Java
interfaces, each implemented differently by individual
vendors. The set of classes that implement the JDBC
interfaces for a particular database engine is called a
JDBC driver. In building a database application, you do not
have to think about the implementation of these underlying
classes at all; the whole point of JDBC is to hide the
specifics of each database and let you worry about just
your application
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Which is faster jdbc or odbc?
Write an sql to find all records having all numeric characters in a field ?
What is encrypted connection?
What is the difference between jdbc and odbc?
Briefly tell about the jdbc architecture.
what is the meaning of following code snippets Class c=class.forName(driverClassName); Driver d=(driver)c.newInstance();
What are jdbc and its components?
How can I create a custom RowSetMetaData object from scratch?
What is jdbc explain?
Name the types of jdbc drivers.
Give steps to connect to the db using jdbc?
Is jdbc a protocol?
What are database warnings in jdbc and how can we handle database warnings in jdbc?
What is jdbc oracle thin?
How do I load a database driver with JDBC 4.0 / Java 6?