// Ticket #125: Missing values should be enterpreted as
// null.
rowValues[i] = null;
}
}
_row = new DefaultRow(getHeader(), rowValues);
if (_failOnInconsistentRowLength) {
_rowNumber++;
if (_columnsInTable != csvValues.length) {
throw new InconsistentRowLengthException(_columnsInTable, _row, csvValues, _rowNumber);