好吧,我继续使用 XAMPP,现在我通过网络主机托管我的 hiscores,我如何编辑这一行以便它与它一起工作,当我运行服务器时,它会抛出一个错误。
public static void createConnection() {
try {
Class.forName("com.mysql.jdbc.Driver").newInstance();
con = DriverManager.getConnection(
"jdbc:mysql://fdb4.awardspace.com/", "1191306_hiscores", "passremoved");
stmt = con.createStatement();
Misc.println("Connected");
} catch (Exception e) {
Misc.println("Connection Problem");
}]
曾经是 localhost/hiscores 显然不再起作用了。