Geert Verhaag wrote:
So I launch the application with the command: java -jar AppName.jar at the command prompt
If you specify -jar the JVM ignores any other classpath you set. Either bundle the driver into your application jar (including it by reference in a manifest class-path may work, I can't remember), or use -classpath and an explicit class name instead of -jar.
-O