I'm currently working on a Swing project that uses hsqldb 2.3 as an optional database... This project has a map, and geotools also uses hsqldb, however it uses hsqldb 1.8. I tried to put them both working together but I get this exception:
"Caused by: java.lang.ClassNotFoundException: org.hsqldb.jdbc.jdbcDataSource"
I checked the source code, and I believe the reason it happens is because on 2.3 the "jdbc" word is in upper case: "org.hsqldb.jdbc.JDBCDataSource"
I don't know what to do from here. If I add both jars I will get a class conflict error. Any suggestion is welcome....