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?
The correct action to load a database driver by using JDBC 3.0 is to use the java.lang.Class.forName method to load the driver class. This is a standard method in older versions of JDBC for dynamically loading the JDBC driver at runtime. The Class.forName method ensures that the driver's static initializer is executed, which typically involves registering the driver instance with DriverManager.
Answer is correct, c
C is the correct answer
C is correct.
Option C is correct.
Answer is C