I am using h2 db in a java application. I am using H2 console to view the contents of db, but it only works when no other application is accessing the db.
Is there a way to open h2 console while some other application is also accessing the same db?
I am using h2 db in a java application. I am using H2 console
Share
To be able to connect from multiple application you can configure your db to accept tcp connection. Basically, you can do that by using
jdbc:h2:tcpin your db url.Read more about this here.