這篇文章將為大家詳細講解有關iBATIS中怎么獲取output參數(shù)值,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
成都創(chuàng)新互聯(lián)公司專業(yè)為企業(yè)提供萊蕪網(wǎng)站建設、萊蕪做網(wǎng)站、萊蕪網(wǎng)站設計、萊蕪網(wǎng)站制作等企業(yè)網(wǎng)站建設、網(wǎng)頁設計與制作、萊蕪企業(yè)網(wǎng)站模板建站服務,十多年萊蕪做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡服務。
如下:
Procedure:
create proc sp_output ( @testParam int output ) as begin set @testParam = 10 end go
XML:
﹤parameterMaps﹥ ﹤parameterMap id="select-params2" class="Hashtable"﹥ ﹤parameter property="testParam" column="testParam" direction="Output" /﹥ ﹤/parameterMap﹥ ﹤/parameterMaps﹥ ﹤statements﹥ ﹤procedure id="GetAccountViaSP2" parameterMap="select-params2"﹥ sp_output ﹤/procedure﹥ ﹤/statements﹥
Code:
int testid = 0; Hashtable map = new Hashtable(); map.Add("testParam", testid); mapper.Insert("GetAccountViaSP2", map); Console.WriteLine(map["testParam"].ToString());
注意,在parammap定義的時候需要設置class=Hashtable,用class=int,就獲取不到!
關于iBATIS中怎么獲取output參數(shù)值就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。