Guest User

Untitled

a guest
Nov 5th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. try {
  2. // RECUERDA: PARA EJECUTAR ESTE CÓDIGO ES NECESARIO TENER mYSQL
  3. // FUNCIONANDO Y LAS TABLAS Y USUARIOS CREADOS
  4. String url1 = "jdbc:mysql://localhost:3306/matricula";
  5. String user = "usuario";
  6. String password = "usuario" + "";
  7. conn1 = DriverManager.getConnection(url1, user, password);
  8. if (conn1 != null) {
  9. System.out.println("Conectado matrícula");
  10. }
  11.  
  12. } catch (SQLException ex) {
  13. System.out
  14. .println("ERROR:La dirección no es válida o el usuario y clave");
  15. ex.printStackTrace();
  16. }
  17. }
Add Comment
Please, Sign In to add comment