Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am deploying a legacy C# mobile application onto a Windows CE 6 device.

The application compiles within Visual Studio 2008 and deploys onto the device, but an error appears when running my application on the device:

File or assembly name 'System.Data.SqlServerCe, version = 3.0.3600.0, culture=neutral, PublicKeyToken=3B3235DF1C802AD3' or one of it's dependencies, was not found'.

This application (as you've probably guessed) uses SQL Server Compact, I've tried various methods to get the application to run (reinstalled SQL Server compact on the device etc) but no joy.

I've also tried altering the app.config file to map remap this missing dependency:

<dependentassembly>
    <assemblyidentity name="System.Data.SqlServerCe" culture="neutral" publickeytoken="3be235df1c8d2ad3" />
    <bindingredirect  newVersion="3.5.0.0" oldVersion="3.0.3600.0" />
 </dependentassembly>

But I am getting still the same issue.

share|improve this question
Have you tried deploying SQLCE 3.0 to the device? SQLCE does not always gracefully handle cross-version loading, even within the save minor rev (3.5 and 3.5SP1 for example won't mix). – ctacke Jan 9 at 14:30
Yes, installed SQLCE 3.0 but still getting the same error... – bluenose1970 Jan 9 at 15:00
Well, even stranger, I installed SQLCE 3.5 and the original error disappeared BUT (and there's always a but!) the application runs but exits immediately back to the desktop after a couple of seconds with no error message displayed?! – bluenose1970 Jan 9 at 16:03
For 3.5 yes, that's a typeload problem, and not unusual. – ctacke Jan 9 at 18:19
So where do I begin with this?! Visual Studio doesn't even return an error! – bluenose1970 Jan 9 at 19:22
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.