我试图MySQL
使用JAVA
相同的代码连接本地主机中的数据库。现在我尝试在我的系统中使用它来更新远程数据库。这是我的代码:
import java.sql.*;
class mysqlConnect {
public static void main (String[] args) {
try {
String url = "jdbc:mysql://dibyaranjan.net76.net/a3932573_product";
Connection conn = DriverManager.getConnection(url,"a3932573_dibya","*****");
Statement st = conn.createStatement();
st.executeUpdate("INSERT INTO emp_oracle " + "VALUES (1001, 'Dibya', 'AAA')");
conn.close();
} catch (Exception e) {
System.err.println(e.getMessage());
}
}
}
我收到此错误消息: null, message from server: "Host '49.204.14.98' is not allowed to connect to this MySQL server"。
ip是我的公共ip。