Personal speech,
I'm trying to run the OW2 Orchestra software, and it comes with a default connection string belonging to H2 in the following format:
jdbc\:h2\:file\:/tmp/orchestra-db/orchestra_core.db
I need to translate it to a MySQL string (also JDBC), something like:
jdbc:mysql://localhost:3306/
With the same information of the original string.
The problem is that I did not quite understand what the original string means! Can anyone help me?