private static Connection conexion() {
try {
//Cargamos el Driver MySQL
conexion = DriverManager.getConnection(server, user, pass);
} catch (Exception e) {
JOptionPane.showMessageDialog(null,"Error "+e);
System.out.println("SQLException: " + e.getMessage());
System.out.println("SQLState: " + ((SQLException) e).getSQLState());
System.out.println("VendorError: " + ((SQLException) e).getErrorCode());
}
return conexion;
}
这就是我创建连接的地方。如何在不创建新连接的情况下从其他类调用该变量?我不想建立多个连接,我想为我的整个 Java 程序使用相同的连接。
有没有办法调用该变量?我是一个新程序员。