Hi,
The problem is the database URL.
jdbc:h2:mem:MODE=DB2;DB_CLOSE_DELAY=-1 means: in-memory database with
the name "MODE=DB2". You need to add ";" after the "mem:"
jdbc:h2:mem:;MODE=DB2;DB_CLOSE_DELAY=-1
To avoid such problem, database names that contain "=" could be
rejected. I'm not sure if that's a good idea, as = is a valid
character within file names.
Regards,
Thomas