What is the use of Class.forName
Answers were Sorted based on User's Feedback
Answer / rajshekhar
class.forName() is used to load the jdbc driver.
class is a class and for name is a static method its syntax
is
Class.forName("sun.jdbc:odbc:JdbcOdbcDriver");
Is This Answer Correct ? | 1 Yes | 2 No |
Answer / amol sawant
Class.forName(driver);
in this "Class" is the name of the Object of "Class" class
which is in sql package
and forName();
is method of that class "Class"
it will load the driver for connection purpose
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / ramaiah raj
Class.forName(String ClassName); Here Class is Predefined
class.forName(String className) is method used to create the
object which declared as abstract. In JDBC the Driver class
is an abstract class. So in order to create a instance
forName method is used.
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / bhagya raju vallabhapuram
loads the class into jvm's memory with out creating the object
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / poonam verma
It loads class once and execute static block.
Is This Answer Correct ? | 0 Yes | 3 No |
Answer / ambika
it is used to load the driver in database
its a first step of connection of database
structure:
class.forName("sun.jdbc:odbc:jdbcodbcDriver")
Is This Answer Correct ? | 12 Yes | 18 No |
Answer / devarathnam c,kotagudibanda(po
Hi...
Class.forName();method facilitates you to loading the
driver inorder to providing the connection between the
forntend and backend for database transactions.
Is This Answer Correct ? | 2 Yes | 15 No |
Answer / nk
The class.forname provides a mechanism to define driver at
run time.
Is This Answer Correct ? | 8 Yes | 23 No |
Answer / gopalramana
class.forName("abc.class")
loads ths class and create instance in JVM.
Is This Answer Correct ? | 2 Yes | 20 No |
hi friends, i have done my BE(CSE)at 2011 then i have joined one company before they asked me 50k so i paid but now they telling no project here so we r going to close like that so now i need any job i have good knowledge in core java and j2ee(jsp,servlet,jdbc) so if u know any job pl help me
What is table mutation and how do you avoid it?
Why does most servlets extend HttpServlet?
What is permgen or permanent generation?
What class is the top of the awt event hierarchy?
what about static?
What is the purpose of the wait(), notify(), and notifyall() methods?
How to add new JTabbed pane?
How do u supress the parameters from the displaying in the url?
Describe, in general, how java's garbage collector works?
What is RRL?
How to send a request to garbage collector?