I'm using H2 database for a simple web application.
When I try and view the data via the H2 console web browser, it doesn't seem to update with the latest data in the database.
For example:
I add a new record to a table using my web app and when I do a select * from the table I added the record to, it doesn't show the new record.
I have the following settings for the Login when I connect to H2 console via the browser:
Saved Settings: Generic H2 (Embedded)
Setting Name: Generic H2 (Embedded)
Driver Class: org.h2.Driver
JDBC URL: jdbc:h2:file:/Develops/Databases/snowy_db;FILE_LOCK=NO
Any ideas on how I go about accessing the latest data from the database using the H2 console browser?
Thanks in advance.
Edit
Just to add: I can see the new record in my web app but not when I use the H2 console browser.