SqlParameter[] par1 = new SqlParameter[4];
par1[0] = new SqlParameter("@prefix", "TIN-CMP-");
par1[1] = new SqlParameter("@codeLength", "17");
par1[2] = new SqlParameter("@LastCode", "");
par1[3] = new SqlParameter("@retVal", SqlDbType.VarChar, 20);
par1[3].Direction = ParameterDirection.Output;
var data = SqlHelper.ExecuteNonQuery(this.ConnectionString, "Proc_GenerateID", par1);
它不会抛出任何异常但返回null值,甚至程序在SSMS中正常工作
答案 0 :(得分:1)
确保执行sproc后SqlHelper.ExecuteQuery正在读取输出参数值。
e.g。
yourCommand.ExecuteNonQuery();
string retVal = yourCommand.Parameters["@retVal"].Value;