LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 644|回复: 0

Mysql 连接问题

[复制链接]
发表于 2005-5-31 09:30:28 | 显示全部楼层 |阅读模式
这是我的 程序
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 连接成功!
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表