博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IBatis.Net学习笔记十三:在IBatis.Net中调用存储过程
阅读量:6654 次
发布时间:2019-06-25

本文共 2000 字,大约阅读时间需要 6 分钟。

调用方式比较简单,主要也就是两种类型的存储过程:

1、更新类型的存储过程
2、查询类型的存储过程
下面就来看看具体的调用方式:
1、更新类型的存储过程
sp_insertaccount:

create procedure [dbo].[sp_insertaccount]
    -- add the parameters for the stored procedure here
   @account_id int,
   @account_firstname varchar(32),
   @account_lastname varchar(32)as
begin
insert into accounts (account_id, account_firstname, account_lastname)
    values (@account_id,@account_firstname,@account_lastname )
endmap配置文件:
        <procedure id="insertaccountviastoreprocedure" parametermap="insert-params_new">
            sp_insertaccount
        </procedure>

    <parametermap id="insert-params_new" class="account">

      <parameter property="id" />
      <parameter property="firstname" />
      <parameter property="lastname" />
    </parametermap>

这里要注意的就是parametermap中的参数个数和顺序要和sp_insertaccount存储过程中的一致

ado中的调用代码:

        public void insertaccountviastoreprocedure(account account)

        {
            try
            {
                sqlmap.insert("insertaccountviastoreprocedure", account);
            }
            catch (dataaccessexception ex)
            {
                throw new dataaccessexception("error executing insertaccountviastoreprocedure. cause :" + ex.message, ex);
            }
        }
这里使用的是sqlmap.insert的方法,为了看起来直观一点,其实使用sqlmap.queryforobject方法的话效果也是一样的:)

2、查询类型的存储过程

getaccountbyname:

create procedure [dbo].[getaccountbyname]

    @name varchar(32)
as
begin
select * from accounts where account_firstname like '%' + @name + '%'
end
map配置文件:
    <procedure id="getaccountbynameviastoreprocedure" resultmap="account-result" parametermap="selectpro-params">
      getaccountbyname
    </procedure>

    <parametermap id="selectpro-params" class="string">

      <parameter property="name"/>
    </parametermap>这里parametermap也是和上面的要求一样,至于property的名字在这里没有实际作用,可以任意取名的

ado中的调用代码:

        public arraylist getaccountbynameviastoreprocedure(string strname)
        {
            try
            {
                arraylist list = (arraylist)sqlmap.queryforlist("getaccountbynameviastoreprocedure", strname);
                return list;
            }
            catch (dataaccessexception ex)
            {
                throw new dataaccessexception("error executing sqlaccountviasqlmapdao.getaccountbyid. cause :" + ex.message, ex);
            }
        }
原文地址:

转载于:https://www.cnblogs.com/zyfking/archive/2009/01/19/1378527.html

你可能感兴趣的文章
比较全的 C# 操作 Word的代码
查看>>
初探AIR for“.NET研究” Android开发
查看>>
(转)matlab与C混合编程之中级篇
查看>>
pip安装错误,用镜像
查看>>
如何在open xml excel 中存储自定义xml数据?
查看>>
301和302跳转的区别
查看>>
【PM面试题】请设计一个老年人用的新闻App
查看>>
Linux安装 Mysql
查看>>
thickbox传递参数
查看>>
hdu 2082 找单词
查看>>
百度地图3.7.1获取当前的位置,并自定义自身位置的图标
查看>>
CuteEditor.Editor+a+a+c+a+a.a() System.RuntimeType.get_Assembly() 问题解决方法
查看>>
Int8 and UInt8 types different from Byte and SByte
查看>>
全面剖析Cocos2d游戏触摸机制 (下)
查看>>
Android 检测网络连接状态(转)
查看>>
Javascript的转义Escape
查看>>
C++结构体中的静态变量
查看>>
JSON.parse()和JSON.stringify()
查看>>
mysql 查排名
查看>>
中国最大的融资平台
查看>>