In my applet the follow Exception message show me:
"myDriver.ClassName"
Whats wrong?
My code is :
public Usuario()throws ClassNotFoundException, SQLException,
InstantiationException, IllegalAccessException
{
String url = "jdbc:mysql://pluto.netmogi.com.br:3306/java/";
Class.forName("org.gjt.mm.mysql.Driver").newInstance();
con = DriverManager.getConnection(url, "myuser", "password");
stmt = con.createStatement();
}
PS. My driver is - mm.mysql.Driver
And the permission for JDBC Driver directory in Linux Sistems is allright.
What I have to do?
Thanks for your atentions
Roberto
moreno@stripped