Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. public Connection getConexion(){
  2. Connection con = null;
  3. try {
  4. Class.forName("com.mysql.jdbc.Driver");
  5. con = (Connection) DriverManager.getConnection("jdbc:mysql://localhost:3306/baseDeDatos","root","clave");
  6. return con;
  7. } catch (Exception e) {
  8. //JOptionPane.showMessageDialog(null, "Error al conectarse con la BD: "+e.getMessage());
  9. }
  10. return con;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement