Runner.run("qdsl by name (iterated)", new Benchmark() {
@Override
public void run(int times) throws Exception {
for (int i = 0; i < times; i++) {
QCompanies companies = QCompanies.companies;
SQLQuery query = new SQLQuery(conn, conf);
CloseableIterator<String> it = query.from(companies)
.where(companies.name.eq(String.valueOf(i)))
.iterate(companies.name);
try {
while (it.hasNext()) {
it.next();