首页 > 开发 > 综合 > 正文

获得存储过程返回值的方法(return的值)

2024-07-21 02:16:59
字体:
来源:转载
供稿:网友
中国最大的web开发资源网站及技术社区,
获得存储过程的返回值


system.data.sqlclient.sqlconnection scon = new system.data.sqlclient.sqlconnection("server=netangel;uid=etopsus;pwd=etops;database=etops");
system.data.sqlclient.sqlcommand scom = new system.data.sqlclient.sqlcommand("",scon);

scon.open();
scom.commandtext="p_corpclassadd";
scom.commandtype = system.data.commandtype.storedprocedure;
scom.parameters.add(
                new sqlparameter("returnvalue", sqldbtype.int, 4,
                parameterdirection.returnvalue, false, 0, 0,
                string.empty, datarowversion.default, null)) //增加存储过程的返回值参数

            

scom.executenonquery();
response.write(scom.parameters["returnvalue"].value.tostring());  //输出存储过程的返回值 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表