Advertisement
Guest User

Untitled

a guest
Jun 18th, 2016
1,803
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. package net.gravenilvec.Coins;
  2.  
  3. import org.bukkit.plugin.java.JavaPlugin;
  4.  
  5. public class Coins extends JavaPlugin{
  6.  
  7. public SqlConnection sql;
  8.  
  9. public void onEnable(){
  10. sql = new SqlConnection("jdbc:mysql://","localhost","servermc","root","");
  11. sql.connection();
  12. }
  13.  
  14. public void onDisable(){
  15. sql.disconnect();
  16. }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement