vote up 0 vote down star

Here, it is said that Sql Server Compact allows up to 256 connections.

But when I try to open 2 connections, I receive a file sharing error. How can I solve this?

SqlCeConnection c1 = new SqlCeConnection("Data Source=testDB.sdf;Encrypt Database=True;Password=test;File Mode=shared read;Persist Security Info=False;");
SqlCeConnection c2 = new SqlCeConnection("Data Source=testDB.sdf;Encrypt Database=True;Password=test;File Mode=shared read;Persist Security Info=False;");
c1.Open();
c2.Open(); // throws SqlCeException
c1.Close();
c2.Close();

There is a file sharing violation. A different process might be using the file. [ testDB.sdf ]

flag

73% accept rate

1 Answer

vote up 0 vote down check

This was a connection string issue.

File Mode=Read Write

solved the problem.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.