html5中文学习网

您的位置: 首页 > 网络编程 > ASP.NET » 正文

如何在web.config中建立公用的的数据库连接_.NET教程_编程技术

[ ] 已经帮助:人解决问题
web|数据|数据库|数据库连接
呵呵!偶是不是有点市侩

<configuration>
    <!-- application specific settings -->
    <appSettings>
        <add key="ConnectionString" value="server=localhost;uid=sa;pwd=;database=store" />
    </appSettings>
<configuration>

public SqlDataReader GetReviews(int productID) {

    // 创建Connection和Command对象实例
    SqlConnection myConnection = new SqlConnection(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;
XM8HTML5中文学习网 - HTML5先行者学习网
XM8HTML5中文学习网 - HTML5先行者学习网
(责任编辑:)
推荐书籍
推荐资讯
关于HTML5先行者 - 联系我们 - 广告服务 - 友情链接 - 网站地图 - 版权声明 - 人才招聘 - 帮助