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

Twitter
LinkedIn
SlideShare
RSS
I’m using it all the time!
Thanks
I keep coming back to this site for this magic line!