117118119120121122123124125126127
setCurrentRowNumber(count); for (int j = 0; j < columns.length; j++) { Column c = columns[j]; int index = c.getColumnId(); try { Value v = c.convert(r[j]); newRow.setValue(index, v); } catch (DbException ex) { throw setRow(ex, count, getSQL(r)); } }