我将我的网站上传到互联网,但我不知道如何将数据库附加到该网站

发布于 2024-11-01 08:34:06 字数 357 浏览 1 评论 0原文

Data Source=.\SQLEXPRESS;
AttachDbFilename=ftp.Blaz.co.il/Shim/MainProject2/App_Data/Database.mdf;
Integrated Security=True;
User Instance=True;
User Id=BB;Password=BB23

我的错误在哪里?

用户id和密码应该是连接FTP文件夹的用户id和密码?

我没有在我的 web.config 中编写此内容,它只是在我的 DAL 类中。

我正在使用 SQL Server Express 和 Web 开发人员 (C#)

Data Source=.\SQLEXPRESS;
AttachDbFilename=ftp.Blaz.co.il/Shim/MainProject2/App_Data/Database.mdf;
Integrated Security=True;
User Instance=True;
User Id=BB;Password=BB23

Where is my mistake?

The userid and the password should be the user id and the password to connect the FTP folder?

I didn't write this in my web.config, it's just in my DAL class.

I'm using SQL Server Express and web developer (C#)

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

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

发布评论

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

评论(1

淡看悲欢离合 2024-11-08 08:34:07

这取决于您的网络提供商:

  • 他们是否托管 sql?
  • 您购买了该托管套餐吗?

如果您有 sql 托管包,则需要使用 Web 主机的控制台附加 .mdf

从那里您需要遵循上面有关通过 web.config 连接的建议。

根据您需要存储的数据类型和数量,可能值得考虑 SQLce,这会以您似乎正在尝试的方式附加。

It depends on your web provider:

  • Do they host sql?
  • Have you purchased that hosting package?

If you have a sql hosting package you need to use the web host's console to attach the .mdf.

From there you need to follow the advice above regarding connection though the web.config.

Depending on the type and amount of data you need to store it might be worth considering SQLce, this would attach in the way that you seem to be trying.

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