Ajeux

[DataBase] Main

Jan 7th, 2017
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. package fr.ajeux.myplugin;
  2.  
  3. import org.bukkit.plugin.java.JavaPlugin;
  4.  
  5. public class Main extends JavaPlugin{
  6.  
  7. public SqlConnection sql;
  8.  
  9. public void onEnable(){
  10. sql = new SqlConnection("jdbc:mysql://","IP","DATABASE","LOGIN","PASSWORD");
  11. sql.connect();
  12. }
  13.  
  14. public void onDisable(){
  15. sql.disconnect();
  16. }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment