cnblogs/dcrenl/.net 存储过程中的 output参数取值问题.html
2024-09-24 12:43:01 +08:00

66 lines
3.0 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div id="sina_keyword_ad_area2" class="articalContent ">当存储过程中多个结果需要返回时经常需要用到output类型的参数如果存储过程没有返回结果集只是输出output类型参数时使用如下代码
<div><br>
<div>db.AddOutParameter(dbCmd, &quot;@<span style="line-height:21px">ParamName</span>&quot;, DbType.Int32, 0);</div>
<div>db.ExecuteNonQuery(dbCmd);<br>
<div>int i = dbCmd.Parameters[&quot;@ParamName&quot;].Value.ToString();</div>
</div>
</div>
<div><br>
</div>
<div>但是存储过程返回结果集时使用上面的代码程序将会出现异常,所以存储过程有结果集返回时应使用如下代码:</div>
<div><br>
</div>
<div>
<div style="line-height:21px">db.AddOutParameter(dbCmd,&quot;@<span style="line-height:21px">ParamName</span>&quot;, DbType.Int32,0);</div>
<div>
<div>&nbsp;<wbr>using (IDataReader idr =db.ExecuteReader(dbCmd))</div>
<div>{</div>
<div style="line-height:21px"><span style="line-height:21px">}</span></div>
</div>
</div>
<div style="line-height:21px"><span style="line-height:21px">int i =dbCmd.Parameters[&quot;@ParamName&quot;].Value.ToString();</span></div>
<div style="line-height:21px"><span style="line-height:21px"><br>
</span></div>
<div style="line-height:21px">或者</div>
<div style="line-height:21px"><br>
</div>
<div style="line-height:21px">
<div style="line-height:21px">
<div style="line-height:21px">db.AddOutParameter(dbCmd,&quot;@<span style="line-height:21px">ParamName</span>&quot;, DbType.Int32,0);</div>
<div>
<div>&nbsp;<wbr>using (IDataReader idr =db.ExecuteReader(dbCmd))</div>
<div>{</div>
<div>while(idr.Read())</div>
<div>{</div>
<div>}idr.Close();</div>
<div><span style="line-height:21px">int i =dbCmd.Parameters[&quot;@ParamName&quot;].Value.ToString();</span></div>
<div style="line-height:21px"><span style="line-height:21px">}</span></div>
</div>
</div>
<div style="line-height:21px"><br>
</div>
<div style="line-height:21px">再或者</div>
<div style="line-height:21px"><br>
</div>
<div style="line-height:21px">
<div style="line-height:21px">db.AddOutParameter(dbCmd,&quot;@<span style="line-height:21px">ParamName</span>&quot;, DbType.Int32,0);</div>
<div style="line-height:21px">
<div>&nbsp;<wbr>using (IDataReader idr =db.ExecuteReader(dbCmd))</div>
<div>{</div>
<div>while(idr.Read())</div>
<div>{</div>
<div>}</div>
<div>idr.NextResult();</div>
<div><span style="line-height:21px">int i =dbCmd.Parameters[&quot;@ParamName&quot;].Value.ToString();</span></div>
<div><span style="line-height:21px">idr.Close();</span></div>
<div style="line-height:21px"><span style="line-height:21px">}</span></div>
</div>
</div>
<br>
</div>
<div style="line-height:21px">总之,想要取得<span style="line-height:21px">output参数输出的结果&#20540;只能在DataReader结果集关闭或者指向一下个结果集时才能取到&#20540;</span></div>
<div style="line-height:21px">以上代码使用的是.net企业库Microsoft.Practices.EnterpriseLibrary</div>
</div>