- 精品下载 | 实用查询 | 词典查询 | 桌面壁纸 | 网址 | 笑话 | FLASH频道 | 天气文章资讯 | 站长工具 | 证件办理 | 闪字生成 | 广告代码 | 在线手册 | 有问必答
您现在的位置: 蓝派网 >> 文章中心 >> 网络编程 >> .NET >> ASP.NET >> 正文
站内文章搜索:           

如何在web.config中建立公用的的数据库连接

作者:佚名    文章来源:网络转载    更新时间 :2007-11-25 13:34:56

<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;
数据库连接;return true>

 
【相关文章:】
没有相关文章

发表评论】【打印此文】【关闭窗口】【点击数:
★好玩的休闲小游戏★
网友评论:
数据载入中,请稍后……