4
votes
2answers
4k views
When reading a CSV file using a DataReader and the OLEDB Jet data provider, how can I control column data types?
In my C# application I am using the Microsoft Jet OLEDB data provider to read a CSV file. The connection string looks like this:
Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\Data …
2
votes
When reading a CSV file using a DataReader and the OLEDB Jet data provider, how can I control column data types?
To expand on Marc's answer, I need to create a text file called Schema.ini and put it in the same directory as the CSV file. As well as column types, this file can specify the file format, date tim …
