There are applications on java. It is connected to the H2 database in embadded mode. The necessary data is collected and put in a table. Everything is noticed, but ... It turns out the database is running in single-user mode. After all, while the application is running (and it works all the time), I cannot access the database through the browser and look at the data I need, since the connection with this user data (loggin "sa", password "") is still active. Is it possible to add multiple users in this mode of the H2 database? Thank.

  • one
    Either run H2 as a standalone server, or do not try to get more from the built-in mode than was intended for it. - Sergey Gornostaev

0