Guest User

Untitled

a guest
Apr 15th, 2018
166
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. public class MysqlConnect {
  4. public static void main(String[] args) {
  5.  
  6. try {
  7. Class.forName("org.gjt.mm.mysql.Driver").newInstance();
  8. Connection con = DriverManager.getConnection("jdbc:mysql://stusql.dcs.shef.ac.uk/hcsd2?user=hcsd2&password=roastbeef");
  9. System.out.println("Connected to the database");
  10. con.close();
  11. }
  12.  
  13. catch (Exception e) {
  14. e.printStackTrace();
  15. }
  16.  
  17. }
  18. }
Add Comment
Please, Sign In to add comment