Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what does the method Class.forName returns?

Answers were Sorted based on User's Feedback



what does the method Class.forName returns?..

Answer / m.gangadhar

Example
Class.forName("oracle.jdbc.driver.OracleDriver")

first it loads th class name at run time
second it executes the static initializer containg the code
of driver class i.e
static
{
try{
DriverManager.registerDriver(new Driver());
}
catch(Exception e){}
}

then it creates the object for the driver class and
registers that object in to the DriverManager

Is This Answer Correct ?    15 Yes 1 No

what does the method Class.forName returns?..

Answer / priyank jain

Static method Class.forName(String className) returns the
Object for the classname specified in argument passed to
method.
Also Class.forName used to load drivers.
Ex. In JDBC call
Class.forName("org.apache.derby.jdbc.EmbeddedDriver");
automatically creates an instance of a EmbeddedDriver and
registers it with the DriverManager.

Is This Answer Correct ?    15 Yes 5 No

what does the method Class.forName returns?..

Answer / choudarygariabbai

static Class<?> forName(String className)
Returns the Class object associated with the
class or interface with the given string name.

Is This Answer Correct ?    8 Yes 2 No

what does the method Class.forName returns?..

Answer / uv

When Class.forName("<classname>") function gets
executed,the class gets loaded in JVM.

To create an object and access its functions and variables,
we can use getInstance( ), please look into the below
fragment code:

Class c = Class.forName("Cls");
Object o = null;
o = c.getInstance( );
// type casting the Object
Cls cl = (Cls) o;

Is This Answer Correct ?    7 Yes 1 No

Post New Answer

More JDBC Interview Questions

How do I disallow NULL values in a table?

0 Answers  


What are the main steps in java to make JDBC connectivity?

0 Answers   UGC Corporation,


Is jdbc secure?

0 Answers  


What is jdbc thin client in oracle?

0 Answers  


What will happen when ResultSet is not closed?

1 Answers   CTS,


Is oracle client required for jdbc connection?

0 Answers  


How many ways can you update a result set?

0 Answers  


What is jdbc odbc bridge in java?

0 Answers  


how to retrieve sql exceptions

2 Answers   Bosch,


What are four types of JDBC driver?

0 Answers  


Explain the different ways to register a driver?

2 Answers  


What is preparedstatement in jdbc?

0 Answers  


Categories