I am trying to run a python script via jython on a server that I won't be able to install anything.
I can run
java -jar jython.jar
and that works fine. I am unable to use mm.mysql-2.0.14 driver because it can't find the jar. I set the classpath to include it, as I did on a test system with a standard (that is, non-standalone) jython install. It still says it can't find the jar.
I have tried things like:
export CLASSPATH=/tmp/mm.mysql-2.0.14-bin.jar:/tmp/zxJDBC.jar;
java -jar jython.jar
and
java -cp /tmp/mm.mysql-2.0.14-bin.jar -jar jython.jar
no dice.
still the error: zxJDBC.DatabaseError: driver [org.gjt.mm.mysql.Driver] not found