欢迎光临
我们一直在努力

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

建站超值云服务器,限时71元/月

<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>


 

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 如何在web.config中建立公用的的数据库连接_asp.net技巧
分享到: 更多 (0)