「com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: 無法建立與資料庫伺服器的連線」故障排除
Exception: 無法建立與資料庫伺服器的連線」故障排除此錯誤訊息表示與MySQL 資料庫伺服器建立連線的問題。您提供的 Java 程式碼使用了過時版本的 MySQL Connector/J,可能與 MySQL 8.0 不相容。
import com.mysql.cj.jdbc.Driver; public class Main { public static void main(String[] args) { try { Driver sqlDriver = new Driver(); DriverManager.registerDriver(sqlDriver); Connection sqlConnection = DriverManager.getConnection("jdbc:mysql://localhost:3306/?user=root", "root", "root"); System.out.println("Connection established successfully"); sqlConnection.close(); } catch (SQLException e) { e.printStackTrace(); } } }
此問題的原因
其他提示
以上是為什麼我收到「com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException:無法建立與資料庫伺服器的連線」錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!