Skip to content

Instantly share code, notes, and snippets.

@cosbor11
Created July 5, 2016 14:52
Show Gist options
  • Save cosbor11/71782e0104fbd50bc746f5fd446b0ee3 to your computer and use it in GitHub Desktop.
Save cosbor11/71782e0104fbd50bc746f5fd446b0ee3 to your computer and use it in GitHub Desktop.
List<Player> inactivePlayers = manager.executeQuery(query);
// There should only be one inactivePlayer: Calvin Johnson
for (final Player player : inactivePlayers)
{
System.out.println(player.getFirstName() + " " + player.getLastName() + " is not active.");
}
manager.executeDelete(query);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment