Guest User

Untitled

a guest
Apr 17th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. Connection conn = null;
  2.  
  3. public void ResetAndInitializeDataStore() {
  4. try {
  5. Class.forName("com.mysql.jdbc.Driver").newInstance();
  6. conn = DriverManager.getConnection("jdbc:mysql://mysql.cs.nott.ac.uk/axr00u", "axr00u", "swansea");
  7. } catch (Exception e) {
  8. e.printStackTrace();
  9. }
  10. }
Add Comment
Please, Sign In to add comment