Guest User

Untitled

a guest
Jan 25th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. Connection con;
  2. Statement st;
  3.  
  4. public Conexion(){
  5. try{Class.forName("com.mysql.jdbc.Driver"); // en el debug llega a esta parte mostrando por class file editor la excepción; en ejecución no lanza errores, llega al catch mostrando conexión no establecida
  6. con = DriverManager.getConnection("jdbc:mysql://localhost/prodemios?user=root&password=");
  7.  
  8. }catch(ClassNotFoundException|SQLException e){
  9.  
  10. System.out.println("conexion no establecida");
  11. }
  12.  
  13. }
Add Comment
Please, Sign In to add comment