首页 > 开发 > 综合 > 正文

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

2024-07-21 02:22:39
字体:
来源:转载
供稿:网友
在asp.net应用程序下找到web.config文件,在<system.web>前面加入下面的代码:
<?xml version="1.0" encoding="utf-8"?>
<configuration>



    <appsettings>
        <add key="connectionstring" value="server=jeff;uid=sa;pwd=btk;database=msg" />
    </appsettings>
   
  <system.web>
......
  </system.web>
</configuration>   



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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表