ibatis
run_fan
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ibatis3 调用存储过程
参数bean package com.cwfan.dao.bean; import java.util.Map; public class SimpleQuery { private int id; private String cols; private String table; private String conditions; private Strin...原创 2010-07-30 13:22:27 · 183 阅读 · 0 评论 -
ibatis3 动态查询
mapper代码 <select id="selectRole" parameterType="simpleQuery" resultType="com.cwfan.pojo.TRole"> select ${cols} from ${table} where ${conditions} order by ${cols} </select> ...原创 2010-07-30 13:26:28 · 149 阅读 · 0 评论
分享