Question 113:
Which code fragment is required to load a JDBC 3.0 driver?
Answer options:
A. Connection con = Connection.getDriver ("jdbc:xyzdata://localhost:3306/EmployeeDB");
B. Class.forName("org.xyzdata.jdbc.NetworkDriver");
C. Connection con = DriverManager.getConnection ("jdbc:xyzdata://localhost:3306/EmployeeDB");
D. DriverManager.loadDriver ("org.xyzdata.jdbc.NetworkDriver");