Constant Field Values

Contents

dev.plex.*

  • dev.plex.cache.notes.PlayerNotes
    Modifier and Type
    Constant Field
    Value
    private final String
    "INSERT INTO `notes` (`uuid`, `name`, `written_by`, `note`) VALUES (?, ?, ?, ?);"
    private final String
    "SELECT * FROM `notes` WHERE uuid=?"
  • dev.plex.cache.player.SQLPlayerData
    Modifier and Type
    Constant Field
    Value
    private final String
    "INSERT INTO `players` (`uuid`, `name`, `login_msg`, `prefix`, `rank`, `adminActive`, `ips`, `coins`, `vanished`, `commandspy`) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?);"
    private final String
    "SELECT * FROM `players` WHERE uuid=?"
    private final String
    "UPDATE `players` SET name=?, login_msg=?, prefix=?, rank=?, adminActive=?, ips=?, coins=?, vanished=?, commandspy=? WHERE uuid=?"
  • dev.plex.cache.sql.SQLNotes
    Modifier and Type
    Constant Field
    Value
    private static final String
    "DELETE FROM `notes` WHERE uuid=? AND id=?"
    private static final String
    "INSERT INTO `notes` (`id`, `uuid`, `written_by`, `note`, `timestamp`) VALUES(?, ?, ?, ?, ?)"
    private static final String
    "SELECT * FROM `notes` WHERE uuid=?"
  • dev.plex.cache.sql.SQLPunishment
    Modifier and Type
    Constant Field
    Value
    private static final String
    "INSERT INTO `punishments` (`punished`, `punisher`, `punishedUsername`, `ip`, `type`, `reason`, `customTime`, `active`, `endDate`) VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)"
    private static final String
    "SELECT * FROM `punishments` WHERE punished=?"
    private static final String
    "SELECT * FROM `punishments` WHERE punisher=?"
    private static final String
    "UPDATE `punishments` SET active=? WHERE active=? AND punished=? AND type=?"