Advertisement
spungkyb

open_db jav

Jul 11th, 2017
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. private void open_db() {
  2. try {
  3. Class.forName("com.mysql.jdbc.Driver");
  4. Con = (Connection) DriverManager.getConnection("jdbc:mysql://localhost:3306/laundryproject","root","");
  5. stm = (Statement) Con.createStatement();
  6.  
  7. }catch (ClassNotFoundException | SQLException e){
  8. JOptionPane.showMessageDialog(null,"Koneksi gagal");
  9. System.out.println(e.getMessage());
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement