Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Concurrent Access From Multiple Processes to Single Sql Server Compact Database File

My understanding is that Sql Server compact is intended to be a data store for single application that runs in-process. It is OK for two different processes to connect to and access data from the same .sdf file?

like image 228
Josh Avatar asked Dec 23 '11 00:12

Josh


1 Answers

Yes.

SQL Server Compact supports multiple connections up to the 256 connection limit. Opening connections on different processes is also supported.

Ref.

like image 159
Mitch Wheat Avatar answered Oct 10 '22 02:10

Mitch Wheat