I got a problem with my codes when I want to connect to a MySql database.
I have successfullly installed the MySql-4.0.0a-alpha-win, and have the MySql services running.
I copy the the mm.mysql-2.0.4-bin.jar to my JDK root-dir: D:\J2SE; so I set the classpath: "D:\J2SE\src.jar; D:\J2SE\mm.mysql-2.0.4-bin.jar"
My codes :
import java.io.*;
import java.sql.*;
import org.gjt.mm.mysql.*;
public class MySqlTest{
Connection DBConn;
ResultSet rs;
Statement stmt;
String dsn;
String query;
public MySqlTest(){
try{
Class.forName("org.gjt.mm.mysql.Driver");
}
catch(ClassNotFoundException ce) {
ce.printStackTrace();
}
}
public static void main(String args[]) {
MySqlTest mst=new MySqlTest();
}
}
Compiles OK, but when running, it gives :
java.lang.ClassNotFoundException: org.gjt.mm.mysql.Driver
����
����
Plesae help me.
Regards