I am using Microsoft.Jet.OLEDB.4.0 from .NET to read a CSV file. Here is a sample input data row:
102A Avenue,97 Street,99 Street,2 Lanes Closed,2007-04-13,2009-12-31
When I read the last two valuee they come out as DateTime rather than strings and that is neither what I want nor what I expect. It seems that the provider performs type inference on text values. Is there a way to disable that?
Thanks,
-Vlad