Exam 1z0-809 All QuestionsBrowse all questions from this exam
Question 218

Which action can be used to load a database driver by using JDBC3.0?

    Correct Answer: B

    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.

Discussion
jduarteOption: B

Answer B. Tested

sansay61Option: B

b is correct

steefaandOption: B

B is correct.

DestroyerOption: C

The correct answer is C

griglad

No look again

iSnoverOption: B

The answer is B, Include the JDBC driver class in a java.lang.Class.forName method to load the driver class.

WilsonKKerllOption: B

Answer is B.