欢迎光临
我们一直在努力

在web.config中建立数据库连接-.NET教程,数据库应用

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

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

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