hi liangfei:
 i meet a situation,just like your example,i need to use the same resultmap
with the two query. and currently ,is there any way to attain the aim.

2009/6/2 liangfei <liangfei0...@gmail.com>

>  Suggest that "resultMap" add a "ignoreNotExists" attribute:
>
>
>
> <resultMap id="xresult" class="xclass" ignoreNotExists="true">
>
>          <result property="a" column="a" />
>
>          <result property="b" column="b" />
>
>          <result property="c" column="c" />
>
>          <result property="d" column="d" />
>
> </resultMap>
>
>
>
> <select id="s1" resultMap="xresult">
>
>          select a, b from x
>
> </select>
>
>
>
> <select id="s2" resultMap="xresult">
>
>          select a, b, c from x
>
> </select>
>
>
>

Reply via email to