我现在要做的是在C#中返回一个值 表示存储过程已完成。我曾是 想在最后一个MYSQL中做这样的事情 要调用的存储过程:
int status =0
if (proc.result >0)
then { status = proc.result }
label.status
答案 0 :(得分:0)
ExecuteNonQuery将返回一个int,表示存储过程如何完成。
从存储过程中获取返回值:
var returnValue = new SqlParameter("returnVal", SqlDbType.Int);
returnValue.Direction = ParameterDirection.ReturnValue;
command.Parameters.Add(returnValue);