What is the difference between a Local Database in C# and a SQL Server Management Studio created database?

后端 未结 3 1195
被撕碎了的回忆
被撕碎了的回忆 2021-02-19 04:27

I\'m creating an application with MS Visual C# 2010 Express that requires a database.

I\'ve learned that there seem to be two ways to create/use a SQL database with this

3条回答
  •  醉酒成梦
    2021-02-19 05:13

    A local database uses a scaled down version of SQL Server - the Express compact edition (CE). There's a number of technical limitations, but the most important one is that a local database is only available to the instance the application runs in. A database server on the other hand can be accessed by other applications, or other instances of the same application. In effect, shared by multiple users who all see the same data.

提交回复
热议问题