Advertisement
testkarna

Untitled

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