SQL Server Compact Edition 和 SQL Server Express Edition 之间有什么区别吗?

Is there any difference between SQL Sever Compact Edition and SQL Server Express Edition?

我已经在 SQL Server Express Edition 2012 中为 Windows Form Application 创建了一个数据库。我可以在客户端安装 SQL Server Compact Edition 来为我的项目使用这个数据库吗?

如果您想连接到 SQL 服务器精简版,you can use SqlClient to connect with your Windows Form Application.

无法使用 Compact Edition 连接常规 SQL 服务器,除非您在 Compact Edition 上重新创建数据库,因为它连接到本地可访问的文件。

SQL Server CE 就像SQLite,不需要安装实例。 (只有一个运行时 dll 就足够了。)它将驻留在您的应用程序的内存中。

另一方面,SQL Server Express Edition 是一个完整的 DBMS(数据库管理系统),它作为服务器保留在系统上。 Express Edition 仅意味着减少的功能(如内存限制)