Advertisement
Guest User

moorzy

a guest
Oct 16th, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. package week4;
  2.  
  3. import java.sql.Connection;
  4. import java.sql.DriverManager;
  5. import java.sql.SQLException;
  6.  
  7. public class Test {
  8.  
  9. public static void main(String[] args) {
  10. try(Connection c = DriverManager.getConnection("jdbc:mysql://localhost:3306/itb", "root", "Pass$$")){
  11. System.out.println("Success!");
  12. }catch(SQLException e) {
  13. e.printStackTrace();
  14. }
  15.  
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement