LocalDB deployment on client PC(客户端 PC 上的 LocalDB 部署)
问题描述
我对这个新版本的 SQL Server Express 非常感兴趣.
I am very intrigued by this new version of SQL Server Express.
(对我而言)不清楚安装程序应该做什么来部署使用 LocalDB 的应用程序.
It's not clear (to me) what a setup program should do to deploy an application that use a LocalDB.
是否需要在客户端 PC 上安装 SQL Server Express 然后附加 MDF 文件?
Is it required to install SQL Server Express on the client PC and then attach the MDF file?
或者它只需要运行 LocalDB.msi
并且它像 SQL Server Compact 一样作为独立文件工作?
Or it's only required to run the LocalDB.msi
and it works as a standalone file like SQL Server Compact?
推荐答案
使用LocalDB不需要安装SQL Server Express,LocalDB就是SQL Server Express,安装更简单.
You don't need to install SQL Server Express to use LocalDB, as LocalDB is SQL Server Express, just easier to install.
安装 LocalDB 后,您可以使用连接字符串的 AttachDbFileName 属性打开"一个 MDF 文件.请记住,同一文件在任何给定时间只能由单个 LocalDB 实例(单个 Windows 登录)打开,因此这不是数据共享功能.
Once LocalDB is installed you can use AttachDbFileName property of the connection string to "open" an MDF file. Keep in mind that the same file can only be opened by a single LocalDB instance (single Windows login) at any given time, so this is not a data-sharing feature.
更新:如果您的应用程序使用 .NET,请确保安装 .NET 4.0.2 或更新版本,如 此处提到.最初的 .NET 4 不理解 LocalDB 连接字符串,因为它早于 LocalDB 发布.
Update: If your application is using .NET, make sure to install .NET 4.0.2 or newer, as mentioned here. The original .NET 4 doesn't understand LocalDB connection strings, as it shipped long before LocalDB.
这篇关于客户端 PC 上的 LocalDB 部署的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:客户端 PC 上的 LocalDB 部署
基础教程推荐
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01