I am getting this error ‘System.Data.OleDb.OleDbException: IErrorInfo.GetDescription failed with E_FAIL(0x80004005)‘ while running the below MS Access select
query:
query:
Select Title, Address, Size, LastModifiedDate From MyTable
Solution
The problem is due to the Reserved keyword Size. The problem solved after changed the query by enclosing the Reserved keyword with square brackets ([])
Select Title, Address, [Size], LastModifiedDate From MyTable
Advertisement