· 10 years ago · Sep 11, 2016, 06:36 PM
1 public SQLSettings(JavaPlugin plugin, String Host, String User, String DB, String Pass){
2 this.instance = plugin;
3 this.mysql = new MySQL(User, Pass, Host, DB);
4 this.mysql.Update(
5 "CREATE TABLE IF NOT EXISTS Settings(username varchar(100) PRIMARY KEY, LEVEL int NOT NULL, TOTAAL_ACHIEVEMENTS int NOT NULL , PUNTEN int NOT NULL, EXP int NOT NULL, HIDE_ALL int NOT NULL, BOOSTERS int NOT NULL)");
6 }