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 |
what is rowset?
How can we maintain the integrity of a database by using jdbc?
What is the query used to display all tables names in SQL Server (Query analyzer)?
What is the significance of DataBaseMetaData.tableIndexStatistics? How to obtain and use it?
What is meant by jdbc and odbc?
Prepared statements are faster. Why?
What are types of jdbc drivers?
What is jdbc odbc?
Is jdbc part of j2ee?
What are jdbc and its components?
Differentiate between type_scroll_insensitive and type_scroll_sensitive.
Define preparedstatement.