database - Why are added tables from Java not visible when I open the H2 console? -
i use h2 embedded database in java, , after creating database , adding tables , data, gets saved file in directorey of computer.
but whenever open file h2 console, shows no tables @ all? why tables not there?
i using url in java code: jdbc:h2:file://c:/temp/h2/ourdb
and log console following information:
after logging in, can't see tables created in java?
you have used different database url in h2 console (not jdbc:h2:file://c:/temp/h2/ourdb
). need use same one, otherwise it's different database.
Comments
Post a Comment