I am trying to make a database connection but when i try to get the connection from my database it gives me the error:
java.sql.SQLException: No suitable driver found for jdbc:mysql://play.zsinfo.nl:3306/daansander
at java.sql.DriverManager.getConnection(Unknown Source)
at java.sql.DriverManager.getConnection(Unknown Source)
at me.daansander.login.database.MySql.getConnection(MySql.java:28)
at me.daansander.login.database.Sql.connect(Sql.java:13)
at me.daansander.login.Login.main(Login.java:11)
i looked into the code and i found the line where the problem is:
connection = DriverManager.getConnection("jdbc:mysql://" + host + ":" + port + "/" + db, user, pass);
but i could not find the problem i tried this on other plugins and it works just fine