2
I am trying to make the connection to the database in my code, however it appears the following error:
Exception in thread "main" java.sql.Sqlexception:
No suitable driver found for jdbc:mysql://localhost:3306/usuario
Code:
public class ConexaoBd {
public static void main(String[] args) throws SQLException{
Connection conexao = DriverManager.getConnection("jdbc:mysql://localhost:3306/usuario","root","tonhaoroot");
conexao.close();
}
}
Hummm, I really thought it had something to do with mysql drive. I’m going to test it here man. I’m warning you if it worked.
– MarlonJhow