The test fails with "OdbcParameterCollection only accepts non-null OdbcParameter type objects, not SqlParameter objects" error while trying to get values from the excel sheet (data source for my coded UI tests).
[DataSource("System.Data.Odbc", "Dsn=Excel Files;Driver={Microsoft Excel Driver (*.xls)};dbq=|DataDirectory|\Source.xlsx;defaultdir=.;driverid=790;maxbuffersize=2048;pagetimeout=5;readonly=true", "Sheet1$", DataAccessMethod.Sequential), TestMethod]
Since the test is used for checking the translations of languages supported by our app, the excel sheet has only language codes(en-US, pl-PL, cs-CZ, etc.) in all the rows.
I have installed Microsoft Access Database Engine 2010 (English) and configured ODBC data sources in Windows Administrative Tools.
This test was working fine before, I am not able to figure out what has gone wrong suddenly.