重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
这篇文章将为大家详细讲解有关iBATIS中怎么获取output参数值,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。
成都创新互联公司专业为企业提供莱芜网站建设、莱芜做网站、莱芜网站设计、莱芜网站制作等企业网站建设、网页设计与制作、莱芜企业网站模板建站服务,十多年莱芜做网站经验,不只是建网站,更提供有价值的思路和整体网络服务。
如下:
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参数值就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。