I am trying to get a wpf4 application that uses the entity framework 4 & SQLCE4 to work on a test machine before packaging ready for a client. On my local dev environment everything works as I wish however when I try on my test machine I keep getting this error.

Inner Expection System.Data.SqlServerCe.SqlCeException (0x80004005): Internal error: Cannot open the shared memory region. at System.Data.SqlServerCe.SqlCeConnection.ProcessResults(Int32 hr) at System.Data.SqlServerCe.SqlCeConnection.Open(Boolean silent) at System.Data.SqlServerCe.SqlCeConnection.Open() at System.Data.EntityClient.EntityConnection.OpenStoreConnectionIf(Boolean openCondition, DbConnection storeConnectionToOpen, DbConnection originalConnection, String exceptionCode, String attemptedOperation, Boolean& closeStoreConnectionOnFailure)

My code is nothing special

        var detail = new StoreDetail
                                 {
                                     Activated = item.Activated,
                                     ActivationDate = item.ActivationDate,
                                     BranchID = item.BranchID,
                                     DisplayProcessAlert = item.DisplayProcessAlert,
                                     DisplayRedeemAlert = item.DisplayRedeemAlert,
                                     LastSyncDate = item.LastSyncDate,
                                     PaymentMade = item.PaymentMade,
                                     PaymentValidUntil = item.PaymentValidUntil,
                                     ProductKey = item.ProductKey,
                                     RequireStoreAssistantLogin = item.RequireStoreAssistantLogin,
                                     StoreID = item.StoreID
                                 };
                db.StoreDetails.AddObject(detail);
                db.SaveChanges();

I have the .net framework and also sqlce4 installed on the test machine however the above code always fails.

Has anyone had this problem or know what is causing this issue?

Any help would be most appreciated.

Thank you.

link|improve this question

72% accept rate
Make sure that you have permissions to read .sdf file. – Ladislav Mrnka Jul 19 '11 at 18:55
Turns out I wasn't closing the connection to the database from a previous call. I wrapped everything in a using statement and all good. – Diver Dan Jul 20 '11 at 11:02
feedback

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

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.