Which action can be used to load a database driver by using JDBC3.0?
Which action can be used to load a database driver by using JDBC3.0?
To load a database driver using JDBC 3.0, you use the java.lang.Class.forName method to load the driver class. This method dynamically loads the specified class and registers it with the DriverManager, making the driver available for the database connections.
Answer B. Tested
b is correct
B is correct.
The correct answer is C
No look again
The answer is B, Include the JDBC driver class in a java.lang.Class.forName method to load the driver class.
Answer is B.