首页 > 开发 > 综合 > 正文

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

2024-07-21 02:16:36
字体:
来源:转载
供稿:网友
呵呵!偶是不是有点市侩

<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;
  • 本文来源于网页设计爱好者web开发社区http://www.html.org.cn收集整理,欢迎访问。
  • 发表评论 共有条评论
    用户名: 密码:
    验证码: 匿名发表