I use JDBC and created h2 database called usaDB from sql script. Then I filled all tables with jdbc.
The problem is that after I connect to usaDB at localhost:8082 I can
For the people who are using H2 in embedded(persistent mode) and want to "connect" to it from IntelliJ(other IDEs probably apply too).
jdbc:h2:./database.h2
./
jdbc:h2:/Users/me/projects/MyAwesomeProject/database.h2
;MV_STORE=false
. It disables MVStore engine which in fact is currently used by default in H2.