ibatis in怎么传值,语句参数传入方法详解

下面的文章要给大家讲解的就是ibatis in语句参数传入方法,一起通过下文来进行了解吧。

1、传入参数仅有数组

<select id="GetEmailList_Test" resultClass="EmailInfo_">
    select *
    from MailInfo with (nolock)
    where ID in
    <iterate open="(" close=")" conjunction=",">
        #[]#
    </iterate>
</select>

调用

string[] strValue = new string[] { "1", "2", "3" };
Reader.QueryForList < EmailInfoModel > ("WebApp_Ibatisnet.dao.GetEmailList_Test", strValue);

2、传入参数有数组,且有其他数据

<select id="GetEmailList_Test3" parameterClass="TestIn" resultClass="EmailInfo_">
    select top(#Count#)*
    from MailInfo with (nolock)
    where ID in
    <iterate open="(" close=")" conjunction="," property="ArrValue">
        #ArrValue[]#
    </iterate>
</select>

调用

TestIn ti = new TestIn();
ti.Count = 1;
ti.ArrValue = strValue;
return Reader.QueryForList < EmailInfoModel > ("WebApp_Ibatisnet.dao.GetEmailList_Test3", ti);

实体类

public class TestIn {
    private int count;
    public int Count {
        get { return count; }
        set { count = value; }
    }
    private string[] arrValue;
    public string[] ArrValue {
        get { return arrValue; }
        set { arrValue = value; }
    }
}

3、in后面的数据确定,使用string传入

<select id="GetEmailList_Test2" parameterClass="TestIn" resultClass="EmailInfo_">
    select *
    from MailInfo with (nolock)
    where ID in
    ($StrValue$)
</select>

调用

Reader.QueryForList < EmailInfoModel > ("WebApp_Ibatisnet.dao.GetEmailList_Test2", "1,2,3");

其他信息:

Iterate的属性:

prepend-可被覆盖的SQL语句组成部分,添加在语句的前面(可选)

property-类型为java.util.List的用于遍历的元素(必选)

open-整个遍历内容体开始的字符串,用于定义括号(可选)

close-整个遍历内容体结束的字符串,用于定义括号(可选)

conjunction-每次遍历内容之间的字符串,用于定义AND或OR(可选)

遍历类型为java.util.List的元素。

以上的内容你都清楚了吗?更多相关内容请继续来奇Q工具网的java架构师栏目了解吧。

推荐阅读:

ibatis动态sql标签用法详解

ibatis原理是怎样的?原理浅析

ibatis动态拼接sql实例分享