org.nutz.dao.impl.sql.callback.QueryEntityCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nutz Show documentation
Show all versions of nutz Show documentation
Nutz, which is a collections of lightweight frameworks, each of them can be used independently
package org.nutz.dao.impl.sql.callback;
import java.sql.ResultSet;
import java.sql.SQLException;
import org.nutz.dao.entity.Entity;
import org.nutz.dao.pager.ResultSetLooping;
import org.nutz.dao.sql.SqlContext;
public class QueryEntityCallback extends EntityCallback {
protected String prefix;
public QueryEntityCallback() {}
public QueryEntityCallback(String prefix) {
this.prefix = prefix;
}
@Override
protected Object process(final ResultSet rs, final Entity> entity, final SqlContext context)
throws SQLException {
ResultSetLooping ing = new ResultSetLooping() {
protected boolean createObject(int index, ResultSet rs, SqlContext context, int rowCount) {
list.add(entity.getObject(rs, context.getFieldMatcher(), prefix));
return true;
}
};
ing.doLoop(rs, context);
return ing.getList();
}
}