This code is used to convert CSV file to dataTable.
Before Updating to Microsoft Access Database Engine 2016, Our code works perfectly
connection = new OleDbConnection(Config.connectionString);
connection.Open();
dataAdapter = new OleDbDataAdapter("select * from [" + fileName + "] ", connection);
After we updated to Microsoft Access Database Engine 2016, Our logic can't proceed after connection.open().
I tried with top 10 it's work perfectly. select top 10 * from [" + fileName + "]
after this I tried with 1000, it also works perfectly.
But when I tried to top 10000 line, it failed.
Note: CSV file contain more than 80000 rows.
You use the term 'engine'; do you have a full installation of Office/Access 2016?