Let's say I have the following code:
String sql = "select c.id, c.name from Company c left join Tag t on c.id=t.company_id where c.state='PUBLISHED'";
List<SqlRow> sqlRows =
Ebean.createSqlQuery(sql).setMaxRows(4000000).findList();
for(SqlRow row : sqlRows) {
// Do cool stuff
}
findList() will then load everything up to memory which isn't what I really want in this case.
I saw that Query<T> has findIterate() but Ebean.createSqlQuery(sql) returns SqlQuery and that doesn't have findIterate(). So how do I do this?