Consider the following connection string to an Excel file :
public static string GetACEOleDB12ConnectionStringForImport(string filePath) => $@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source={filePath};Extended Properties=""Excel 12.0;HDR=YES;IMEX=1""";
In above, we have Extended Properties=""Excel 12.0
Now, what does that Excel 12.0 exactly imply in comparison to Excel 8.0.
If we use Excel 12.0 instead of Excel 8.0, does that mean we are not covering Excel 8.0?
A documentation on this extended property would be awesome. I did not find any reference documentaion on well-known links such as connectionstrings.com