hai
i am using mm.mysql.jdbc 1.2c driver to connect Mysql database from applet.
i placed mysql_comp.jar file in the folder where i had my class files.
and my code is given below.i am getting classNotFoundException.
please help me.
thank u
public void connectDBase()
{
try{
Class.forName("org.gjt.mm.mysql.Driver".newInstance();
}catch (Exception E) {
E.printStackTrace();}
try{
con = DriverManager.getConnection("jdbc:mysql://localhost:3306/dbname"
}catch(Exception e){
System.out.println("unable to connect"
}
}
i am using mm.mysql.jdbc 1.2c driver to connect Mysql database from applet.
i placed mysql_comp.jar file in the folder where i had my class files.
and my code is given below.i am getting classNotFoundException.
please help me.
thank u
public void connectDBase()
{
try{
Class.forName("org.gjt.mm.mysql.Driver".newInstance();
}catch (Exception E) {
E.printStackTrace();}
try{
con = DriverManager.getConnection("jdbc:mysql://localhost:3306/dbname"
}catch(Exception e){
System.out.println("unable to connect"
}
}