MYSQL connector
try
{
Connection conn =
DriverManager.getConnection
("jdbc:mysql://localhost:3306",
"root","secret");
System.out.println("Got Connection");
Does not get to got connection, it says no suitable driver. I've checked the class path, port number and have been told to read the documentation. Can someone tell me where?

