我无法连接到 Microsoft SQL Server 数据库文件 (SqlClient)

发布于 2024-08-18 03:50:35 字数 93 浏览 4 评论 0原文

我正在使用 Microsoft SQL Server 数据库文件 (SqlClient),名称为 UHMS.mdf,但无法连接到它。有人可以帮忙吗?

谢谢。

I'm using Microsoft SQL Server Database File (SqlClient), name UHMS.mdf and I'm not able to connect to it. can someone help please.

thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

娇纵 2024-08-25 03:50:35

使用 SQL Server,您不直接连接到文件。您连接到一个 SQL Server 实例,该实例安装了一组数据库。每个数据库由两个(一个数据,一个日志)或多个数据文件组成。 UHMS.mdf 数据文件将与数据库关联。此外,您还可以使用 SQL Server 身份验证或 Windows 身份验证登录进行连接。所以你需要知道的是:

  1. 要使用的 SQL Server 服务器和实例的名称;
  2. 最初连接到的已安装 UHMS.mdf 数据文件的数据库名称 - 也许它名为 UHMS ?
  3. 使用哪种身份验证模式。如果使用 SQL Server 身份验证,您将需要用户名和密码。如果是 Windows,系统管理员需要设置您的帐户,以允许您连接到 SQL Server 实例。

有关要使用的连接字符串的示例,请参阅 www.connectionstrings.com。

With SQL Server, you don't connect directly to a file. You connect to a SQL Server instance, which has a set of databases mounted. Each database consists of two (one data, one log) or more data files. The UHMS.mdf data file will be associated with a database. Also, you can connect using either SQL Server Authenticated or Windows Authenticated logins. So what you need to know is:

  1. The name of the SQL Server server and instance to use;
  2. The database name to initially connect to that has the UHMS.mdf data file mounted -- maybe it's named UHMS ?
  3. Which authentication mode to use. If SQL Server Authentication, you'll need the username and password. If Windows, your account will need to be set up by the sysadmin to allow your connection to the SQL Server instance.

See www.connectionstrings.com for examples of connection strings to use.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文