How to see all tables in my h2 database at localhost:8082?
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 cannot see on the left tree my tables. There is only INFORMATION_SCHEMA database and rootUser which I specified creating usaDB. How to view the content of tables in my h2 database? I tried query SELECT * FROM INFORMATION_SCHEMA.TABLES . But it returned many table names except those I created. My snapshot: I had the same issue and the answer seems to be really stupid: when you type your database name you shouldn't add " .h2.db "