Guest User

Untitled

a guest
Dec 19th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. public static Connection Connerdb()
  2.  
  3. {
  4.  
  5. try{
  6. Class.forName("com.mysql.jdbc.Driver");
  7. Connection con=DriverManager.getConnection( "jdbc:mysql://localhost/TestDB",root, " " );
  8.  
  9. return con;
  10. }
  11. catch (ClassNotFoundException | SQLException e){
  12. JOptionPane.showMessageDialog(null, e);
  13. return null;
  14. }
  15. }
Add Comment
Please, Sign In to add comment