what is the meaning of following code snippets
Class c=class.forName(driverClassName);
Driver d=(driver)c.newInstance();
Answer / srikanth reddy
That is nothing but
Class c=class.forName(driverClassName);
loading the class into main memory dynamically
=====================================
Driver d=(driver)c.newInstance();
ie if already created instance returns thst otherwise it will a new instance and returns thst
| Is This Answer Correct ? | 6 Yes | 0 No |
How can I get or redirect the log used by DriverManager and JDBC drivers?
What are the functions of the jdbc connection interface?
Is there any limitation for no of statments executed with in batchupdate?
How many types of JDBC drivers are there and what are they?
What are different types of ResultSet?
What is a JDBC 2.0 DataSource?
What is com mysql jdbc driver?
How can I get information about foreign keys used in a table?
What is transaction processing in jdbc?
Why do we need a jdbcrowset like wrapper around resultset?
What are the utilities of the callablestatement?
Why do we need jdbc api?