java.sql.SQLException:null连接到MYSQL期间

时间:2018-03-07 11:45:52

标签: java mysql

我只是尝试使用java应用程序远程连接到我的MySQL服务器。但是在运行代码获取java.sql.SQLException:null时,来自服务器的消息:“主机'202.146.192.145'不允许连接到此MySQL服务器“。我已经仔细检查了主机,用户名和密码。以下是我的应用程序中给出的数据库连接代码。

package com.db;
public class Dbbean {
    public Connection con;
    public Statement st;
    public PreparedStatement pst;
    public Dbbean(){
        try {
            Class.forName("com.mysql.jdbc.Driver");
            con=DriverManager.getConnection("jdbc:mysql://phpmyadmin202.sample.com/dbname","user","password");
            st=con.createStatement();
        }
        catch (ClassNotFoundException e) {
            e.printStackTrace();
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }
    public void close() throws SQLException{
        con.close();
    }
    public ResultSet execsql(String sql) throws SQLException{
        ResultSet r=st.executeQuery(sql);
        return(r==null)?null:r;
    }
    public int updatesql(String sql) throws SQLException, ClassNotFoundException{

        int r=st.executeUpdate(sql);
        return(r==0)?0:r;
    }
}

2 个答案:

答案 0 :(得分:0)

检查您服务器中的用户和权限。

答案 1 :(得分:0)

根据我的注意,您错过了连接网址的端口号。默认端口号是3306.尝试添加" jdbc:mysql:// remotename:port / dbname"在连接URL中。另请检查您是否已获得数据库服务器的权限。