当前位置: 编程技术>.net/c#/asp.net
c#(asp.net)接收存储过程返回值的方法
来源: 互联网 发布时间:2014-08-30
本文导语: c#(asp.net)接收存储过程返回值的小例子,供大家参考。 代码示例: myparameter[2] = new SqlParameter("Ret", ""); //增加参数,赋予空值。 myparameter[2].Direction = ParameterDirection.ReturnValue; //设置状态为返回值 int value = SqlHelper.ExecuteNonQuery(SqlH...
c#(asp.net)接收存储过程返回值的小例子,供大家参考。
代码示例:
myparameter[2] = new SqlParameter("Ret", ""); //增加参数,赋予空值。
myparameter[2].Direction = ParameterDirection.ReturnValue; //设置状态为返回值
int value = SqlHelper.ExecuteNonQuery(SqlHelper.strConn, CommandType.StoredProcedure, "proc_Ustixian", myparameter);//执行sql
string sdatevalue = myparameter[2].Value.ToString();//获取存储过程中的返回值
myparameter[2].Direction = ParameterDirection.ReturnValue; //设置状态为返回值
int value = SqlHelper.ExecuteNonQuery(SqlHelper.strConn, CommandType.StoredProcedure, "proc_Ustixian", myparameter);//执行sql
string sdatevalue = myparameter[2].Value.ToString();//获取存储过程中的返回值