0
Personal talk,
I’m trying to run the OW2 Orchestra software, and it comes with a standard 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 from the original string.
The problem is that I don’t quite understand what the original string means! Can someone help me?
Thank you for your reply! You don’t need to tell Mysql "where the local DB is" as specified in the H2 string?
– Mr Guliarte
@Mrguliarte I took a look at documentation, at first Mysql does not work with this format.
– Genos
Got it! Strange, because I am using Hibernate and I continue with the error "could not get database Metadata" : / I think I will try the reverse solution and change pro H2 rs
– Mr Guliarte