Advertisement
Guest User

Untitled

a guest
Jul 31st, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. public class Conexion_BD {
  2.  
  3. Connection connection = null;
  4.  
  5. public void conectar() throws ClassNotFoundException {
  6.  
  7. try {
  8. connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/archivo", "root", "");
  9.  
  10. } catch (SQLException e) {
  11. System.out.println("La Conexion a la Base de datos fallo.");
  12. e.printStackTrace();
  13. return;
  14. }
  15.  
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement