Driver manager is a class/interface.
Answers were Sorted based on User's Feedback
Answer / eswar
The JDBC DriverManager is a clas....It loads the JDBC
driver needed to access a particular data source, locates
and logs on to the database and returns a Connection
object.
Is This Answer Correct ? | 27 Yes | 1 No |
Answer / amarajagan
DriverManager is a Class as part of javax.sql.*; package.The
purpose of DriverManager is to register the JDBC Driver and
to get the Connection Object
--->DriverManager.registerDriver(new
Oracle.jdbc.driver.OracleDriver());
--->Connection
con=DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:xe","scott","tiger");
Is This Answer Correct ? | 15 Yes | 1 No |
DriverManager is a class that present in java.sql package
which is used to connect the our application with database.
that is DriverManager containing getConnection() method
that return Connection object
Is This Answer Correct ? | 9 Yes | 1 No |
Answer / bvk
in JDBC except DriverManager ang SQLException remaaining
all are interfaces.
Is This Answer Correct ? | 9 Yes | 5 No |
Answer / panku
DriverManager is a class. By using the static method
(registerDriver) of this class you can register the
different venders JDBC drivers. Also by using getConncetion
method you can connect to the database which is registered,
it returns the object ref of Connection interface.
Is This Answer Correct ? | 6 Yes | 3 No |
What is meant by ejb?
What is entity bean?
How does EJB 2.0 improve support for interoperability between EJB containers and other J2EE products?
Does spring use ejb?
What does statelessness mean?
What’s the difference between hibernate and ejb 3? Don’t you think ejb 3 is just a clone of hibernate?
What are the services that a container provides for an entity bean?
What is the difference between message driven beans and stateless session beans?
what is current EJB version?
What is the advantage of using entity bean for database operations, over directly using jdbc api to do database operations? When would I use one over the other?
Explain the architectural relationship between JavaBeans and JTA?
What are the differences between ejb 3.0 and ejb 2.0?