I want my Eclipse web application to communicate with a hypersonic database. Both are on my PC. Luckily, Hypersonic offers a jdbc driver (in a .jar file) for this purpose. Unfortunately, I CANNOT get the project to notice the .jar file. So far I have tried these fixes:
1. I added a CLASSPATH environmental variable and entered the file's address.
2. I added the copied the .jar file into the web application's src directory. Then I went to the project's properties and choose "add external jar" and choose .jar file.
3. I went to the manifest file and made this entry:
Class-Path: src/hsqldb.jar
In spite of all this, I still get this error message:
java.lang.ClassNotFoundException: org.hsqldb.jdbcDriver
How can I fix this?!?
1. I added a CLASSPATH environmental variable and entered the file's address.
2. I added the copied the .jar file into the web application's src directory. Then I went to the project's properties and choose "add external jar" and choose .jar file.
3. I went to the manifest file and made this entry:
Class-Path: src/hsqldb.jar
In spite of all this, I still get this error message:
java.lang.ClassNotFoundException: org.hsqldb.jdbcDriver
How can I fix this?!?