I am using HSQLDB in my application and want to check the rows inserted by the application without stopping my application. Though i am able to connect to the database file in read-only mode, the "select * from table-name" does not fetch the latest records entered by the application.
Is there any way to read the latest data inserted by the application without closing the appliaction?
I have tried using DatabaseManagerSwing and DBVisualizer tools.
I dont want to use Server-mode.