web.config中数据库配置

来源:互联网 发布:2010excel软件下载 编辑:程序博客网 时间:2024/05/16 17:47

在asp.net应用程序下找到web.config文件,在<system.web>前面加入下面的代码:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <appSettings>
        <add key="ConnectionString" value="server=jeff;uid=sa;pwd=btk;database=msg" />
    </appSettings>
  
  <system.web>
 ......
  </system.web>
</configuration>  


在aspx文件里面建立连接:
public SqlDataReader GetReviews(int productID) {
    // 创建Connection和Command对象实例
    SqlConnection myConnection = new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"]);
    SqlCommand myCommand = new SqlCommand("ReviewsList", myConnection);
    myCommand.CommandType = CommandType.StoredProcedure;
    // 参数
    SqlParameter parameterProductID = new SqlParameter("@ProductID", SqlDbType.Int, 4);
    parameterProductID.Value = productID;
    myCommand.Parameters.Add(parameterProductID);
    // 执行
    myConnection.Open();
    SqlDataReader result = myCommand.ExecuteReader(CommandBehavior.CloseConnection);
    // 返回结果
    return result;
}

accesa数据库连接的设置
  如果你使用Web.Config来保存数据库的连接那无疑是最好的形式,便于数据库的移植以及变动等一些不定性因素,便于维护就是了。可是,你可以在网络上找到保存SQL等一些数据库的连接,如果是ACCESS连接,就没有那样的方便了。不过,可以使用下面的措施来保证ACCESS的连接。
1.在Web.Config添加:
<appSettings>
 <add key = "ConnString"
 value = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source ={0}//DataBase//digestdb.config"/>
   </appSettings>
注意,数据名字是digestdb.config(为了安全更改后缀名),放在目录DataBase下面。
2.在数据库操作的类或者在代码里面就是如下引用了:
private static string connString = String.Format(  System.Configuration.ConfigurationSettings.AppSettings[ "ConnString" ],
   System.Web.HttpContext.Current.Server.MapPath("."));
3.在代码中直接使用数据库连接
比如在一个单独的类里面:
private static string connString = String.Format(  System.Configuration.ConfigurationSettings.AppSettings[ "ConnString" ],
   System.Web.HttpContext.Current.Server.MapPath("."));
原创粉丝点击