我想連接到外部數據庫,但似乎我可能會犯我錯誤的方式,我把DriverManager連接,這是我第一次連接使用此司機,你能指點我正確的方向嗎?謝謝(可能是一些錯誤的的getConnection調用)使用Java連接到外部mysql數據庫
Class.forName("com.mysql.jdbc.Driver") ;
// Get a connection to the database
Connection conn = DriverManager.getConnection("jdbc:mysql://cs.cis.can.edu;databaseName=mar200;user=utest;password=utest") ;
錯誤
SQL Exception:
State : 08S01
Message: Communications link failure
Last packet sent to the server was 0 ms ago.
Error : 0
什麼錯誤或異常是你看到? – 2012-02-10 03:06:44
我發佈了這個異常,但是你能否告訴我的代碼是否正確(連接字符串)? – user710502 2012-02-10 03:12:21
選中此鏈接,它將幫助您創建正確的連接字符串。 [MySql連接字符串](http://docs.oracle.com/javase/tutorial/jdbc/basics/connecting.html) – havexz 2012-02-10 03:22:57