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.
.sdffile. – Ladislav Mrnka Jul 19 '11 at 18:55