Sql 服务器数据库的.net 连接字符串
我正在使用 MVC3 在 .net 中设计一个应用程序。我正在使用 Visual Studio 2010,并且使用 Sql Server 作为数据库。我应该在 Web.Config 文件中使用什么连接字符串?
I am designing an application in .net using MVC3. I am using Visual studio 2010 and i am using Sql Server for database. what connection string should i use in Web.Config file.?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个包含您想要的任何连接字符串的网站:
http://www.connectionstrings.com/
基本上,您可能应该使用类似这样的内容:
这样您就可以使用可信的安全性(不在配置文件中存储 SQL 用户名和密码)。您只需要确保运行应用程序的帐户有权访问数据库。但实际上,您应该拥有一个具有权限的数据访问层。我建议不要从前端直接访问数据。如果可能的话,甚至可能是 WCF。
Here is a site with any connection string you want:
http://www.connectionstrings.com/
Basically, you should probably use something like this:
This way you are using trusted security (not storing a SQL username and password in your config file). You will just need to make sure that the account that your application runs under has access to the database. Really, though, you should have a data access layer that has the permissions. I would recommend against direct data access from your front-end. If possible, maybe even WCF.