Compare commits
2 Commits
409db8de50
...
1b377734dd
Author | SHA1 | Date |
---|---|---|
David | 1b377734dd | |
David | da07f33d87 |
|
@ -14,8 +14,8 @@
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<maven.compiler.source>1.7</maven.compiler.source>
|
<maven.compiler.source>8</maven.compiler.source>
|
||||||
<maven.compiler.target>1.7</maven.compiler.target>
|
<maven.compiler.target>8</maven.compiler.target>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
|
|
@ -1,26 +1,42 @@
|
||||||
package mx.uv;
|
package mx.uv;
|
||||||
|
|
||||||
|
import java.sql.Connection;
|
||||||
import java.sql.DriverManager;
|
import java.sql.DriverManager;
|
||||||
import java.sql.SQLException;
|
import java.sql.SQLException;
|
||||||
import java.sql.Connection;
|
import java.util.logging.Level;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
public class Conexion {
|
public class Conexion {
|
||||||
public static String url="mysql://root:tdPXEKculfAIumCBQirpMvZYXnrOuCbZ@monorail.proxy.rlwy.net:51101/railway";
|
|
||||||
public static String Drivername="com.mysql.cj.jdbc.Driver";
|
|
||||||
public static String username="root";
|
|
||||||
public static String password="tdPXEKculfAIumCBQirpMvZYXnrOuCbZ";
|
|
||||||
|
|
||||||
private static Connection conexion=null;
|
private Connection conexion;
|
||||||
|
String driver = "com.mysql.cj.jdbc.Driver";
|
||||||
|
private String url = "jdbc:mysql://root:tdPXEKculfAIumCBQirpMvZYXnrOuCbZ@monorail.proxy.rlwy.net:51101/railway";
|
||||||
|
private final String USUARIO="root";
|
||||||
|
private final String CONTRASENA="tdPXEKculfAIumCBQirpMvZYXnrOuCbZ";
|
||||||
|
|
||||||
public static Connection getConnection(){
|
public Connection obtenerConexion() throws SQLException{
|
||||||
try {
|
conecta();
|
||||||
Class.forName(Drivername);
|
|
||||||
conexion = DriverManager.getConnection(url, username, password);
|
|
||||||
} catch (SQLException e) {
|
|
||||||
System.out.println(" SQL:" + e);
|
|
||||||
} catch (ClassNotFoundException e){
|
|
||||||
System.out.println("Driver:" + e);
|
|
||||||
}
|
|
||||||
return conexion;
|
return conexion;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void conecta() throws SQLException{
|
||||||
|
try {
|
||||||
|
Class.forName(driver);
|
||||||
|
} catch (ClassNotFoundException ex) {
|
||||||
|
Logger.getLogger(Conexion.class.getName()).log(Level.SEVERE, null, ex);
|
||||||
|
}
|
||||||
|
conexion=DriverManager.getConnection(url,USUARIO,CONTRASENA);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void cerrarConexion(){
|
||||||
|
if(conexion!=null){
|
||||||
|
try {
|
||||||
|
if(!conexion.isClosed()){
|
||||||
|
conexion.close();
|
||||||
|
}
|
||||||
|
} catch (SQLException ex) {
|
||||||
|
Logger.getLogger(Conexion.class.getName()).log(Level.SEVERE, null, ex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue