public void storeRPObject(RPObject player) throws SQLException, IOException {
// And update the entry
object = player;
// We store the object in the database
DBCommand command = new StoreCharacterCommand(username, character, player);
DBCommandQueue.get().enqueue(command);
}