欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ASP.NET 连接数据库的配置

程序员文章站 2022-07-11 08:27:09
...

web.config 配置连接数据库的配置

第一种:使用APPSetting

web.config的根节点下添加:

  <add key="conn" value="Data Source=.;Initial Catalog=DBSchool;Persist Security Info=True;
               UserID=sa;Password=svse"/>                        
</appSettings>
   Data Source 是数据库的服务器名称
   Initial Catalog 是数据库名称 
   Persist Security Info=True   ADO在数据库连接成功后是否保存密码信息(true表示保存,false表不保存)
   UserID 用户名
   Password 密码
   
   获取连接字符串:
              System.Configuration.ConfigurationManager.AppSettings["conn"].ToString();
  注意:使用 System.Configuration.ConfigurationManager  .AppSettings
             需要在项目中引用  System.Configuration      

第二种:使用connectionStrings:

web.config的根节点下添加:

     <connectionStrings>
     <add  name="conn" connectionString="Data Source=.;Initial Catalog=DBSchool;Persist Security Info=True;
     User ID=sa;Password=svse" providerName="System.Data.SqlClient"/>
     </connectionStrings>
     
     获取连接字符串:
               
                System.Configuration.ConfigurationManager.ConnectionStrings["conn"].ToString();
                 注意:使用 System.Configuration.ConfigurationManager .ConnectionStrings 
                            需要在项目中引用  System.Configuration      

设置本地连接的时候也可以使用Windows方式登录,填写如下:
Data Source=.;Initial Catalog=DBSchool;Integrated Security=True
Integrated Security=True 表示使用使用Windows验证登录
Integrated Security =false 或者不写 ,就要输入账号和密码验证登录了

如果你不记得连接字符串怎么写,可以使用vs的工具 :点击 工具—>连接数据库
ASP.NET 连接数据库的配置
找到
ASP.NET 连接数据库的配置
点击属性:
ASP.NET 连接数据库的配置
这样就获取到了连接字符串,如果是使用账号密码登录,获取到的密码是一串*****,我自己实验直接
填写****,数据库会连不上,要自己修改下密码。