MYSQL connector
public void firstConnection()
{
try
{
Connection conn =
DriverManager.getConnection
("jdbc:mysql://localhost:test?" +
"user=root&password=secret");
System.out.println("Got Connection");
does not get to the system.out.println, claiming
SQLException: No suitable driver
SQLState: 08001
VendorError: 0
I have put the connector on the classpath and have typed in both their test version and the actual port it's on.
Can you help please?

