When connecting to an h2 database, the default search path is set to public
.
You can alter it with the SET SCHEMA_SEARCH_PATH
.
But if you alter it multiple times, at some point how can you view its current content?
I wasn't able to find some kind of commands like this VIEW SCHEMA_SEARCH_PATH
or SHOW SCHEMA_SEARCH_PATH
.
Typing them give me error messages.
Non-hack solution: SELECT SCHEMA()
It's a bit a hack, but you could use: