SQL Server CE "could not find" Crash

We are getting the following error message on one Windows XP - X86

Exception Source:      System.Data.SqlServerCe
Exception Type:        System.DllNotFoundException
Exception Message:     Unable to load DLL 'sqlceme35.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)
Exception Target Site: DllAddRef

      

SQL Server CE is installed and the application compiled as the running X86 OS is also X86.

Any idea why this might be happening?

This usually works almost perfectly on most computers, but does not work on this computer.

+2


source to share


2 answers


Compile the application for "Any Processor" then it will automatically use the appropriate x86 / x64 libraries.



0


source


You have to install the replication components on the device, this cab file contains the compaction dll: sqlce3x.repl. [platform]. [processor] .cab



0


source







All Articles