Sorry if I'm being a bit dim here, I've read other posts and placed the
mm.mysql-2.0.4-bin.jar in the JRE/lib/ext folder but whenever I try to
run
any code with Class.forName("org.gjt.mm.mysql.Driver").newInstance() I
get
an error as below
Exception in thread "main" java.lang.NoClassDefFoundError:
is this related to the mm.mysql jdbc driver for MySQL or have I
misconfigured something else?
Yes to both. The JVM cannot find the mm.mysql.jar file. You must either
put it into your classpath or into the JRE extensions directory
(probably C:\jdk1.3\jre\lib\ext in your case), which is the method I
favour.
Alec Cawley