I'm developing some JUnit tests using DbUnit and have found some of them to be painfully slow.
I have one test that inserts 251 rows into a table (just 'Country' definitions- 3 columns including id,name and country code) and the test setup takes 11 seconds to run against a MySQL database. This is absurd. I'm wondering if setting autocommit to false will speed this up.
Is there a way to force DbUnit to setup the database in a single transaction? Or perhaps I haven't set up DbUnit correctly? I'm hoping that's the bottleneck here. Even massive ORM frameworks like Hibernate are faster than this.