Advertisement
Guest User

Untitled

a guest
Sep 15th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. // The Google class
  2. public class Google implements Runnable {
  3. // Details
  4. private static final String MYSQL_HOST = "192.168.100.45";
  5. private static final int MYSQL_PORT = 3306;
  6. private static final String MYSQL_DB = "analytics";
  7. private static final String MYSQL_USER = "analytics";
  8. private static final String MYSQL_PASS = "password";
  9.  
  10. private MySQL sql;
  11.  
  12. public static void main(String args[]) {
  13. sql = new MySQL(MYSQL_HOST, MYSQL_PORT, MYSQL_DB, MYSQL_USER, MYSQL_PASS);
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement