Advertisement
Guest User

Untitled

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