final CSVParser parser = _dataSet.getCsvParser();
final String[] csvValues;
try {
csvValues = parser.parseLine(_line);
} catch (IOException e) {
throw new MetaModelException("Failed to parse CSV line no. " + _rowNumber + ": " + _line);
}
if (_failOnInconsistentRowLength) {
if (_columnsInTable != csvValues.length) {
throw new InconsistentRowLengthException(_columnsInTable, SingleLineCsvRow.this, csvValues,