我将我的网站上传到互联网,但我不知道如何将数据库附加到该网站
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于您的网络提供商:
如果您有 sql 托管包,则需要使用 Web 主机的控制台附加
.mdf
。从那里您需要遵循上面有关通过 web.config 连接的建议。
根据您需要存储的数据类型和数量,可能值得考虑 SQLce,这会以您似乎正在尝试的方式附加。
It depends on your web provider:
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.