2

When trying to spy on the jdbc connection to a hsqldb database it doesn't work. It looks like the org.hsqldb.jdbcDriver is not deregistered.

raisercostin
  • 8,777
  • 5
  • 67
  • 76

1 Answers1

3

The solution is to deregister both drivers registered by hsqldb.jar.

In spy.properties you should have

realdriver=org.hsqldb.jdbcDriver
realdriver2=org.hsqldb.jdbc.JDBCDriver
deregisterdrivers=true
raisercostin
  • 8,777
  • 5
  • 67
  • 76