Advertisement
Guest User

Untitled

a guest
Jan 15th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. import java.sql.*;
  2.  
  3. import javax.swing.*;
  4.  
  5. public class DBConnect {
  6. Connection con;
  7. public static Connection DB() {
  8. try {
  9. Class.forName("com.mysql.cj.jdbc.Driver");
  10. Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/quizgame", "root" ,"");
  11. return con;
  12. }catch(Exception e) {
  13. JOptionPane.showMessageDialog(null,e);
  14. return null;
  15.  
  16. }
  17.  
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement