billgraziano / CsvDataReader

Fast streaming CSV file reader for PowerShell impleted as a DataReader.
40 stars 22 forks source link

Run in "What If" mode #3

Closed billgraziano closed 10 years ago

billgraziano commented 10 years ago

Use Case: Identify all rows that won't parse. Maybe return back a result that is only invalid rows. Probably return all the columns as a single column. Basically check the column count after a reading a row and spit back the invalid ones.

billgraziano commented 10 years ago

Added a CsvTestReader class that will only return invalid rows.