我想通过静态ip或端口号在其他应用程序中连接MySQL数据库。
在其他PC上运行自己的应用程序是什么,没有结果为空。当我将此地址放到另一台PC上时,此链接可以正常工作http://192.168.137.1:81/phpmyadmin,访问phpmyadmin数据库。
我在此IP或端口92.168.137.1:81的连接字符串中使用了
我的代码
import java.sql.Connection;
import java.sql.DriverManager;
/**
*
* @author VAISAL
*/
public class ConnectionDB {
Connection koneksi=null;
public static String host="192.168.137.1:81";
public static Connection koneksiDb(){
try
{
Class.forName("com.mysql.jdbc.Driver");
Connection filekoneksi = DriverManager.getConnection("jdbc:mysql://"+host+"/sale","ultronhouse","qwertyuiop");
System.out.println("Connection Success");
return filekoneksi;
}
catch (Exception e){
System.out.println(e.getMessage()+"Connection error");
return null;
}
}
}