A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
No, you don't understand. I'm not trying to import data into Excel from Access or similar scenarios. I'm looking for the connectionstring value to make the connection. Over the years, the connectionstring has changed from version to version and also the data provider changed from JET to ACE similar to the following connectionstring samples:
from:
Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\MyExcel.xls;Extended Properties="Excel 8.0;HDR=Yes;IMEX=1";
to:
Provider=Microsoft.ACE.OLEDB.12.0;Data Source=c:\myFolder\myOldExcelFile.xls;Extended Properties="Excel 8.0;HDR=YES";
to:
Provider=Microsoft.ACE.OLEDB.12.0;Data Source=c:\myFolder\myExcel2007file.xlsx;Extended Properties="Excel 12.0 Xml;HDR=YES";
Now with the advent of O365, things have changed once again. Whoever came up with this idea must have worked at Oracle, I suppose.
You can usually find example for particular versions of Excel, however, someone has failed to share that information with the developer community so here I am, hoping to get lucky.