multiple connections to an mdf file

前端 未结 1 1917
慢半拍i
慢半拍i 2020-12-19 22:34

im creating a .Net application using c# for a university project and need some help!

I have a mdf file hosted on a network drive and need several clients to be able

相关标签:
1条回答
  • 2020-12-19 23:02

    You need to host the database server on the network server. Several client can connect to the SQL Server Service. But several clients cannot simultaneously connect directly to the mdf file.

    The file alone cannot handle concurrency. You can have multiple connection to a database server. The database software is what handles the concurrency.

    0 讨论(0)
提交回复
热议问题