Hi , Here is my problem:<br> I am trying to connect to mysql using mm.mysql.jdbc-1.2c Driver , But I am not able to connect :<br> The Source code I used :<br>**********************************<br> import java.sql.*;<br> public class Test {<br> public static void main(String args[]) {<br> System.out.println("This is the First Line"<br> try {<br> Class.forName("org.gjt.mm.mysql.Driver".newInstance();<br> System.out.println("Line After forName"<br> }catch(Exception E) {<br> System.error.println("Unable to Load Driver"<br> E.printStackTrace();<br> }<br> try{<br> System.out.println("Line Before Connecting"<br> Connection conn = DriverManager.getConnection("jdbc:mysql://localhost", "root", "password"<br> System.out.println("Line after Connecting"<br> System.out.println("conn.getTransactionIsolation());<br> }catch(Exception ex) {<br> ex.printStackTrace();<br> }<br> }<br><br>*****************************************<br> The OutPut I am getting Is :<br> This is the First Line<br> Line After forName<br> Line Before Connecting<br> java.sql.SQLException: No suitable Driver.<br>*************************************************<br>If I change my connecting url as : "jdbc:mysql://localhost/dbname?user=root$pasword=passwd"<br><br>I will get the Error message :<br><br>java.sql.SQLExeption : Invalid authorization specification :<br> Access denied for user : 'root@localhost' (Using Password:YES)<br><br> Please Give me the Solution.<br><br>Thank U In Advance;<br><br>Email: <A HREF="mailto:venkatesh_mithra@hotmail.com">venkatesh_mithra@hotmail.com</A><br><br> <br><br><br><br><br><br><br><br><br><br><br>