Skip to content

Instantly share code, notes, and snippets.

@cosbor11
Created July 12, 2016 15:33
Show Gist options
  • Save cosbor11/6c3562793015d1813602116854cc5d1f to your computer and use it in GitHub Desktop.
Save cosbor11/6c3562793015d1813602116854cc5d1f to your computer and use it in GitHub Desktop.
query for qbs and print each one
final List<Player> players = manager.executeQuery(query);
for (final Player qb : players)
{
System.out.println(qb.getFirstName() + " " + qb.getLastName() + ": active=" + qb.getActive());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment