No need to update primary key
This commit is contained in:
parent
dca43b6c57
commit
ed3455db68
@ -29,7 +29,7 @@ public class PersistenceRepository extends RepositoryBase
|
||||
|
||||
private static final String GET_DATA = "SELECT * FROM gemHunters WHERE accountId=? AND region=?;";
|
||||
private static final String INSERT_DATA = "INSERT INTO gemHunters VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?);";
|
||||
private static final String UPDATE_DATA = "UPDATE gemHunters SET region=?,gems=?,health=?,maxHealth=?,hunger=?,x=?,y=?,z=?,yaw=?,pitch=?,quests=?,slots=?,items=?,armour=?,saveTime=?,cashOutTime=? WHERE accountId=?;";
|
||||
private static final String UPDATE_DATA = "UPDATE gemHunters SET gems=?,health=?,maxHealth=?,hunger=?,x=?,y=?,z=?,yaw=?,pitch=?,quests=?,slots=?,items=?,armour=?,saveTime=?,cashOutTime=? WHERE accountId=?;";
|
||||
private static final String DELETE_DATA = "DELETE FROM gemHunters WHERE accountId=?;";
|
||||
private static final Gson GSON;
|
||||
private static final ItemStack AIR = new ItemStack(Material.AIR);
|
||||
@ -165,7 +165,6 @@ public class PersistenceRepository extends RepositoryBase
|
||||
if (exists(client))
|
||||
{
|
||||
executeUpdate(UPDATE_DATA,
|
||||
new ColumnVarChar("region", 2, region.toString()),
|
||||
new ColumnInt("gems", gems),
|
||||
new ColumnInt("health", health),
|
||||
new ColumnInt("maxHealth", maxHealth),
|
||||
|
Loading…
Reference in New Issue
Block a user