while (vt.next()) {
int col = 1;
long ic_id = vt.getLong(col++);
long ic_i_id = vt.getLong(col++);
long ic_u_id = vt.getLong(col++);
ItemCommentResponse cr = new ItemCommentResponse(ic_id, ic_i_id, ic_u_id);
profile.pending_commentResponses.add(cr);
} // WHILE
if (LOG.isDebugEnabled())
LOG.debug(String.format("Loaded %d records from %s",
profile.pending_commentResponses.size(), AuctionMarkConstants.TABLENAME_ITEM_COMMENT));