We all need it at some point or another when using HSQL. What’s in my database during a test?
When your code reaches your breakpoint, you can run following command by pasting it, selecting and executing (alt+shift+X) following line:
org.hsqldb.util.DatabaseManagerSwing.main(new String[]{});
org.hsqldb.util.DatabaseManagerSwing.main(new String[]{});
Since you are starting the instance from the same thread, you’ll see what the thread sees, uncommitted read!
KR,
Andries
I’m using it all the time!
Thanks