No suitable driver found for jdbc:mysql://localhost:3306/ and ClassNotFoundException
I’m trying in Java to establish a connection to mysql. When I run my program I get a error that “No suitable driver found for jdbc:mysql://localhost:3306/bot”. I’ve searched on the internet and found a solution that I need to add Class.forName("com.mysql.cj.jdbc.Driver");
before writing connection = DriverManager.getConnection();
.