In JDBC, All the API?s are interfaces? Where is the actual
implementation?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / dhagej
in case of oracle, classes12.jar provides the implementation
for these interfaces
| Is This Answer Correct ? | 0 Yes | 1 No |
What is “dirty read” in JDBC? Which isolation level prevents dirty read?
What are jdbc and its components?
what is CallableStatement and what is its usage?
What is jdbc oracle thin?
How does JDBC differ from ODBC?
MY code is: public class P1{ public static void main(String ar[]) { class.forName("java.lang.String"); } } errors i got are :New.java:5: error: <identifier> expected class.forName("java.lang.String"); ^ New.java:5: error: invalid method declaration; return type required class.forName("java.lang.String"); ^ New.java:5: error: illegal start of type class.forName("java.lang.String"); ^ New.java:7: error: reached end of file while parsing } ^ 4 errors HELP ME>......
Why is odbc needed?
What is a jdbctemplate?
Is there another way of dealing with the result set that could execute faster?
How is database middleware used to access legacy databases?
What is JDBC API and when do we use it?
How do you know which driver is connected to a database?