2017-11-27 16 views
0

誰でもお手伝いしますか?この問題を解決するために私は何をすべきですか?MySQLとEclipseの接続に問題があります

try 
     { 
      /*Connect to MySQL database */ 
      Connection conn = DriverManager.getConnection(127.0.0.1, root, psswrd); 
      System.out.println("Connection established..."); 
      System.out.println(); 

Error: Multiple markers at this line - The left-hand side of an assignment must be a variable - Syntax error on token ".0", invalid AssignmentOperator - root cannot be resolved to a variable

答えて

0

接続文字列は、このフォームにする必要があります:jdbc:mysql://127.0.0.1:3306/db_name、あなたは以下のような接続を確立する前に、MySQLのJDBCドライバをロードする必要があります

Class.forName("com.mysql.jdbc.Driver"); 
関連する問題