PC6下载站

分类分类

在web.config中建立数据库连接

关注+2004-10-07作者:蓝点

 在asp.net应用程序下找到web.config文件,在前面加入下面的代码:
 


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;

展开全部

相关文章

更多+相同厂商

热门推荐

  • 最新排行
  • 最热排行
  • 评分最高
排行榜

    点击查看更多

      点击查看更多

        点击查看更多

        说两句网友评论

          我要评论...
          取消