I want to connect to the MySQL and Oracle 8 personal via net work but i dont
have the code for that I know that if I want to connect to any DB use this
try {
Class.forName("myDriver.ClassName");
}
catch (java.lang.ClassNotFoundException e)
{
System.err.print("ClassNotFoundException: ");
System.err.println(e.getMessage());
}
Then
conn = DriverManager.getConnection(url,userid,userpassword);
then I use conn for do the other operation but what I should write in
MyDriver.ClassName ???? and from where I can get it ??