|
这是我的 程序
package testmysql;
import javax.sql.*;
import java.sql.*;
/**
*
* @author superwu
*/
public class Main {
/** Creates a new instance of Main */
public Main() {
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
try{
Class.forName("org.gjt.mm.mysql.Driver").newInstance();
String url ="jdbc:mysql://localhost:3306/samp_db?user=root&password=82388311";
Connection conn= DriverManager.getConnection(url);
}catch(Exception e){
System.out.println(e);
}
// TODO code application logic here
}
}
运行后出现以下异常
java.sql.SQLException: null, message from server: "#HY000Host 'localhost.localdomain' is not allowed to connect to this MySQL server"
生成成功(总时间:0 秒)
这是mysql没有设置好的 原因么 ?我 工作在debian下,请问如何解决?
我在命令行下可以用mysql -u root -p 连接成功! |
|