I am using SQL server compact edition 3.5 (version 3.5.8154) OLE deployed through Windows Embedded Compact 7 platform builder. My Execute command is failing. Note, this statement works fine on Windows CE6 with SQL 3.5 version 3.5.5692.
At this line of c++ code:
m_hrLastError = pCommandText->Execute(NULL, IID_IRowset, NULL, NULL, (IUnknown **)&pIRowset);
Execute failed:
SQL Statement: [select table_name, column_name, data_type, character_maximum_length from information_schema.columns]
OLE DB Error:
HRESULT: 80040e37,
Minor Code: 0,
Source: Microsoft SQL Server Compact OLE DB Provider,
Description: The specified table does not exist. [,,,,,]
How do I resolve this issue?
Thanks,
Chris