Hi,
In a 32-bit .NET app, I can use this (OLEDB) connection string to connect to a CSV file via ADO.NET:
"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\foo;"
or this one (ODBC):
"Driver={{Microsoft Text Driver (*.txt; *.csv)}};Dbq=c:\foo"
However there apparently arent 64-bit versions of either the OLEDB Jet drivers or the ODBC text driver.
I could parse the CSV line by line or run the app in 32-bit mode, but ideally I'd just like to find a different driver that runs as 64-bit. Any ideas?