Cant connect to my SQL database

前端 未结 9 600
庸人自扰
庸人自扰 2021-01-04 18:24

So I\'m having an issue connecting to MySQL with Java. Heres my code:

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException         


        
9条回答
  •  春和景丽
    2021-01-04 19:15

    In the above code, port number is missing.

    connection = connection=DriverManager.getConnection("jdbc:mysql://localhost:3306/worlddb","root", "password");
    

    default port number of mysql is 3306

提交回复
热议问题