· 8 years ago · Dec 09, 2017, 09:30 PM
1 private void inicializarTabelas() {
2 try {
3 final String query = "CREATE TABLE IF NOT EXISTS statuspvp (UUID VARCHAR(255), Nick VARCHAR(32), kills int, mortes int, money int,arena VARCHAR(32));";
4 final Connection con = new ConnectionFactory().getConnection();
5 final Statement statement = con.createStatement();
6 statement.executeUpdate(query);
7 statement.close();
8 }
9 catch (Exception e) {
10 Bukkit.getConsoleSender().sendMessage("§4MYSQL: §cErro ao iniciar tabelas: " + e.getMessage());
11 }
12 }