Multiple choice technology web technology

What should be done to change the actual database system type (say, from DB2 to MySql)?

  1. connection.driver_class property should be changed

  2. connection.url property should be changed

  3. dialect property should be changed

  4. All the above

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

To switch the underlying database in a Hibernate application, you must update the driver class, the connection URL, and the SQL dialect property to match the target database system. Thus, all of the above properties must be changed.