Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
3.2
-
None
Description
When running the test-project with the hsqldb profile, the following exception occurs:
java.sql.SQLException: The database is already in use by another process
The reason is, that the profile uses a file based database which is not shut down after each tests. Therefore its lock file is not removed. This bug enhances the hsqldb profile project.properties file and adds the parameter "shutdown=true" to each connection URL. So the database is shut down when the last connection to it is closed. So the exception does not occur any more.