OleDb offers comfortable possibilities to read excel files. One of the limitations for me seem to be the case when a column has different data types not being convertible from a string to other data types unambiguously. An example is a column having string entries, number entries and Date entries.
TryParse actions might succeed for a Double as well as for a DateTime, providing no unambiguous data type.
The following simple table gives an example.
My question: is it possible to handle this case with OleDb at all? If yes how? If not, which other possibilities exist except from reading the Excel file with COM Interop?