我的项目的连接字符串应该是什么?

发布于 2024-12-03 15:21:50 字数 451 浏览 0 评论 0原文

我从 www.hostingfarms.com 托管了一个新网站。他们有一个文件管理器,用于上传网站内容和备份/恢复 MS SQL 数据库 (.bak)。我上传了。但是当我登录我的网站(www.theyuvaworld.com)时,数据库无法连接。我已经在我的本地电脑中使用了这个连接字符串,

SqlConnection con = new SqlConnection("server=.;database=test;integrated security=true");
SqlCommand cmd = new SqlCommand();

我应该在这里进行任何更改吗?

注意:我已在文件管理器的数据库中创建了一个用户,即用户名 = Nikhil 和密码 = **

如果需要,我会提供任何其他详细信息。

问候,

尼基尔

I have hosted a new website from www.hostingfarms.com. They have a file manager for uploading the website content and backup / restore DB (.bak) of MS SQL. I uploaded it. But when I log in into my website (www.theyuvaworld.com), database not gets connected. I have used this connection string in my local PC

SqlConnection con = new SqlConnection("server=.;database=test;integrated security=true");
SqlCommand cmd = new SqlCommand();

Should I make any changes here.

Note : I have created a user in file manager's database i.e Username = Nikhil and Password = **.

I will give any other details if wanted.

Regards,

Nikhil

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

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

发布评论

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

评论(1

最后的乘客 2024-12-10 15:21:50

我发现了这一点,

连接字符串语法是

data source=.\\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true

I figured out this,

Connection string syntax is

data source=.\\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文