Multiple choice technology web technology What should be done to change the actual database system type (say, from DB2 to MySql)? connection.driver_class property should be changed connection.url property should be changed dialect property should be changed All the above Reveal answer Fill a bubble to check yourself D Correct answer Explanation To switch the underlying database system, you must update the JDBC driver class, the connection URL, and the Hibernate SQL dialect to match the target database system. Therefore, all of these properties must be changed.