Sql 服务器数据库的.net 连接字符串

发布于 2024-11-10 15:15:07 字数 111 浏览 1 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

临走之时 2024-11-17 15:15:07

这是一个包含您想要的任何连接字符串的网站:

http://www.connectionstrings.com/

基本上,您可能应该使用类似这样的内容:

Data Source=myServerAddress;Initial Catalog=myDataBase;Integrated Security=SSPI;

这样您就可以使用可信的安全性(不在配置文件中存储 SQL 用户名和密码)。您只需要确保运行应用程序的帐户有权访问数据库。但实际上,您应该拥有一个具有权限的数据访问层。我建议不要从前端直接访问数据。如果可能的话,甚至可能是 WCF。

Here is a site with any connection string you want:

http://www.connectionstrings.com/

Basically, you should probably use something like this:

Data Source=myServerAddress;Initial Catalog=myDataBase;Integrated Security=SSPI;

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.

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