我的项目的连接字符串应该是什么?
我从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现了这一点,
连接字符串语法是
I figured out this,
Connection string syntax is