Advertisement
Guest User

Untitled

a guest
Sep 17th, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. private String Driver = "com.mysql.jdbc.Driver";
  2. private String CadenaConexionDriver = "jdbc:mysql://sql7.freemysqlhosting.net:3306/sql7136309";
  3. private String usuario = "sql7136309";
  4. private String pass = "password";
  5.  
  6.  
  7. public Connection cn;
  8.  
  9. public ConexionBD(){
  10.  
  11. try{
  12. Class.forName(Driver);
  13. cn = DriverManager.getConnection(CadenaConexionDriver,usuario,pass);
  14. JOptionPane.showMessageDialog(null,"se conecto!!");
  15. }catch(Exception e){
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement