public Solutions helpExecuteQuery(DummySherpaServer server, int batchSize) {
InetSocketAddress serverAddress = server.getAddress();
DataSource ds = new SHPDataSource(serverAddress.getHostName(),
serverAddress.getPort());
Connection conn = ds.getConnection(NoCredentials.INSTANCE);
Command command = conn
.createCommand("SELECT ?x ?y WHERE { this should be a real query but the test doesn't actually do anything real.");
((SHPCommand) command).setBatchSize(batchSize);
return command.executeQuery();
}