C#连接数据库的新方法(通过web.config配置文件)
方法一、
1、web.config中<configuration>下加入以下连接代码
<connectionStrings>
<add name="Test" connectionString="server=.;uid=sa;pwd=;Database=tcedu;Connect Timeout=90" providerName="System.Data.SqlClient"/>
</connectionStrings>
2、在后台代码中加入以下代码,其中Test为web.config中数据连接的名称(name)
SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["Test"].ConnectionString);
方法二、
1、web.config中<configuration>下加入以下连接代码
<appSettings>
<add key="Test" value="Data Source=.;Initial Catalog=tcedu;User ID=sa;password="/>
</appSettings>
2、在后台代码中加入以下代码,其中Test为web.config中数据连接的名称(name)
SqlConnection con = new SqlConnection(ConfigurationManager.AppSettings["Test"]);
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步