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 executequery in java?
Does the database server have to be running Java or have Java support in order for my remote JDBC client app to access the database?
What is jsp and jdbc?
What is CLOB and BLOB datatypes in JDBC?
What is metadata in programming?
What is an outer join?
How is database middleware used to access legacy databases?
What is statement and resultset in jdbc?
What is difference between odbc and jdbc?
What types of DataSource objects are specified in the Optional Package?
what is JDBC?
What is the meaning of “dirty read” in the database?