I'm currently using the Microsoft.Jet.OLEDB.4.0 provider to connect to a CSV file. I then use a oledb command SELECT query and a DataReader to read in the rows/columns of data from the CSV file. It works well.
But using Jet means I have to build for x86.
I'd like to build for AnyCPU.
Instead of Jet4 What provider can I use to connect/open a CSV and read in the rows/columns the same way ?
edit: Using features of the .Net framework 2.0 ie not something like ACE which need to be installed separately.
But using Jet means I have to build for x86.
I'd like to build for AnyCPU.
Instead of Jet4 What provider can I use to connect/open a CSV and read in the rows/columns the same way ?
edit: Using features of the .Net framework 2.0 ie not something like ACE which need to be installed separately.