`

ibatis常用的SQL语句

阅读更多

(1) 输入参数为单个值

Xml代码 复制代码 收藏代码
  1. <delete id="com.fashionfree.stat.accesslog.deleteMemberAccessLogsBefore"    
  2. parameterClass="long">    
  3. delete from    
  4. MemberAccessLog    
  5. where    
  6. accessTimestamp = #value#    
  7. </delete>   
<delete id="com.fashionfree.stat.accesslog.deleteMemberAccessLogsBefore" 
parameterClass="long"> 
delete from 
MemberAccessLog 
where 
accessTimestamp = #value# 
</delete> 

 
(2) 输入参数为一个对象

 

Xml代码 复制代码 收藏代码
  1. <insert id="com.fashionfree.stat.accesslog.MemberAccessLog.insert"    
  2. parameterClass="com.fashionfree.stat.accesslog.model.MemberAccessLog>    
  3. insert into MemberAccessLog    
  4. (    
  5. accessLogId, memberId, clientIP,    
  6. httpMethod, actionId, requestURL,    
  7. accessTimestamp, extend1, extend2,    
  8. extend3    
  9. )    
  10. values    
  11. (    
  12. #accessLogId#, #memberId#,    
  13. #clientIP#, #httpMethod#,    
  14. #actionId#, #requestURL#,    
  15. #accessTimestamp#, #extend1#,    
  16. #extend2#, #extend3#    
  17. )    
  18. </insert>   
<insert id="com.fashionfree.stat.accesslog.MemberAccessLog.insert" 
parameterClass="com.fashionfree.stat.accesslog.model.MemberAccessLog> 
insert into MemberAccessLog 
( 
accessLogId, memberId, clientIP, 
httpMethod, actionId, requestURL, 
accessTimestamp, extend1, extend2, 
extend3 
) 
values 
( 
#accessLogId#, #memberId#, 
#clientIP#, #httpMethod#, 
#actionId#, #requestURL#, 
#accessTimestamp#, #extend1#, 
#extend2#, #extend3# 
) 
</insert> 

 

(3) 输入参数为一个java.util.HashMap 

Xml代码 复制代码 收藏代码
  1. <select id="com.fashionfree.stat.accesslog.selectActionIdAndActionNumber"    
  2. parameterClass="hashMap"    
  3. resultMap="getActionIdAndActionNumber">    
  4. select    
  5. actionId, count(*) as count    
  6. from    
  7. MemberAccessLog    
  8. where    
  9. memberId = #memberId#    
  10. and accessTimestamp &gt; #start#    
  11. and accessTimestamp &lt;= #end#    
  12. group by actionId    
  13. </select>  
<select id="com.fashionfree.stat.accesslog.selectActionIdAndActionNumber" 
parameterClass="hashMap" 
resultMap="getActionIdAndActionNumber"> 
select 
actionId, count(*) as count 
from 
MemberAccessLog 
where 
memberId = #memberId# 
and accessTimestamp &gt; #start# 
and accessTimestamp &lt;= #end# 
group by actionId 
</select>

 

  (4) 输入参数中含有数组

   

Xml代码 复制代码 收藏代码
  1. <insert id="updateStatusBatch" parameterClass="hashMap">    
  2. update    
  3. Question    
  4. set    
  5. status = #status#    
  6. <dynamic prepend="where questionId in">    
  7. <isNotNull property="actionIds">    
  8. <iterate property="actionIds" open="(" close=")" conjunction=",">    
  9. #actionIds[]#    
  10. </iterate>    
  11. </isNotNull>    
  12. </dynamic>    
  13. </insert>   
<insert id="updateStatusBatch" parameterClass="hashMap"> 
update 
Question 
set 
status = #status# 
<dynamic prepend="where questionId in"> 
<isNotNull property="actionIds"> 
<iterate property="actionIds" open="(" close=")" conjunction=","> 
#actionIds[]# 
</iterate> 
</isNotNull> 
</dynamic> 
</insert> 

   说明:actionIds为传入的数组的名字; 
   使用dynamic标签避免数组为空时导致sql语句语法出错;
   使用isNotNull标签避免数组为null时ibatis解析出错

 

   (5)传递参数只含有一个数组 
  

Xml代码 复制代码 收藏代码
  1. <select id="com.fashionfree.stat.accesslog.model.StatMemberAction.selectActionIdsOfModule"    
  2. resultClass="hashMap">    
  3. select    
  4. moduleId, actionId    
  5. from    
  6. StatMemberAction    
  7. <dynamic prepend="where moduleId in">    
  8. <iterate open="(" close=")" conjunction=",">    
  9. #[]#    
  10. </iterate>    
  11. </dynamic>    
  12. order by    
  13. moduleId    
  14. </select>   
<select id="com.fashionfree.stat.accesslog.model.StatMemberAction.selectActionIdsOfModule" 
resultClass="hashMap"> 
select 
moduleId, actionId 
from 
StatMemberAction 
<dynamic prepend="where moduleId in"> 
<iterate open="(" close=")" conjunction=","> 
#[]# 
</iterate> 
</dynamic> 
order by 
moduleId 
</select> 

    说明:注意select的标签中没有parameterClass一项
       另:这里也可以把数组放进一个hashMap中,但增加额外开销,不建议使用

 

   (6)让ibatis把参数直接解析成字符串 
  

Xml代码 复制代码 收藏代码
  1. <select id="com.fashionfree.stat.accesslog.selectSumDistinctCountOfAccessMemberNum"    
  2. parameterClass="hashMap" resultClass="int">    
  3. select    
  4. count(distinct memberId)    
  5. from    
  6. MemberAccessLog    
  7. where    
  8. accessTimestamp &gt;= #start#    
  9. and accessTimestamp &lt; #end#    
  10. and actionId in $actionIdString$    
  11. </select>  
<select id="com.fashionfree.stat.accesslog.selectSumDistinctCountOfAccessMemberNum" 
parameterClass="hashMap" resultClass="int"> 
select 
count(distinct memberId) 
from 
MemberAccessLog 
where 
accessTimestamp &gt;= #start# 
and accessTimestamp &lt; #end# 
and actionId in $actionIdString$ 
</select>

    说明:使用这种方法存在sql注入的风险,不推荐使用

 

    (7)分页查询 (pagedQuery)

   

Java代码 复制代码 收藏代码
  1. <select id="com.fashionfree.stat.accesslog.selectMemberAccessLogBy"    
  2. parameterClass="hashMap" resultMap="MemberAccessLogMap">    
  3. <include refid="selectAllSql"/>    
  4. <include refid="whereSql"/>    
  5. <include refid="pageSql"/>    
  6. </select>    
  7. <select id="com.fashionfree.stat.accesslog.selectMemberAccessLogBy.Count"    
  8. parameterClass="hashMap" resultClass="int">    
  9. <include refid="countSql"/>    
  10. <include refid="whereSql"/>    
  11. </select>    
  12. <sql id="selectAllSql">    
  13. select    
  14. accessLogId, memberId, clientIP,    
  15. httpMethod, actionId, requestURL,    
  16. accessTimestamp, extend1, extend2,    
  17. extend3    
  18. from    
  19. MemberAccessLog    
  20. </sql>    
  21. <sql id="whereSql">    
  22. accessTimestamp &lt;= #accessTimestamp#    
  23. </sql>    
  24. <sql id="countSql">    
  25. select    
  26. count(*)    
  27. from    
  28. MemberAccessLog    
  29. </sql>    
  30. <sql id="pageSql">    
  31. <dynamic>    
  32. <isNotNull property="startIndex">    
  33. <isNotNull property="pageSize">    
  34. limit #startIndex# , #pageSize#    
  35. </isNotNull>    
  36. </isNotNull>    
  37. </dynamic>    
  38. </sql>   
<select id="com.fashionfree.stat.accesslog.selectMemberAccessLogBy" 
parameterClass="hashMap" resultMap="MemberAccessLogMap"> 
<include refid="selectAllSql"/> 
<include refid="whereSql"/> 
<include refid="pageSql"/> 
</select> 
<select id="com.fashionfree.stat.accesslog.selectMemberAccessLogBy.Count" 
parameterClass="hashMap" resultClass="int"> 
<include refid="countSql"/> 
<include refid="whereSql"/> 
</select> 
<sql id="selectAllSql"> 
select 
accessLogId, memberId, clientIP, 
httpMethod, actionId, requestURL, 
accessTimestamp, extend1, extend2, 
extend3 
from 
MemberAccessLog 
</sql> 
<sql id="whereSql"> 
accessTimestamp &lt;= #accessTimestamp# 
</sql> 
<sql id="countSql"> 
select 
count(*) 
from 
MemberAccessLog 
</sql> 
<sql id="pageSql"> 
<dynamic> 
<isNotNull property="startIndex"> 
<isNotNull property="pageSize"> 
limit #startIndex# , #pageSize# 
</isNotNull> 
</isNotNull> 
</dynamic> 
</sql> 

   说明:本例中,代码应为:
   HashMap hashMap = new HashMap();
   hashMap.put(“accessTimestamp”, someValue);
   pagedQuery(“com.fashionfree.stat.accesslog.selectMemberAccessLogBy”, hashMap); 
   pagedQuery方法首先去查找名为com.fashionfree.stat.accesslog.selectMemberAccessLogBy.Count 的mapped statement来进行sql查询,从而得到com.fashionfree.stat.accesslog.selectMemberAccessLogBy查询的记录个数,
再进行所需的paged sql查询(com.fashionfree.stat.accesslog.selectMemberAccessLogBy),具体过程参见utils类中的相关代码

 

 


(8)sql语句中含有大于号>、小于号<

    1. 将大于号、小于号写为: &gt; &lt; 如: 

Xml代码 复制代码 收藏代码
  1. <delete id="com.fashionfree.stat.accesslog.deleteMemberAccessLogsBefore" parameterClass="long">    
  2. delete from    
  3. MemberAccessLog    
  4. where    
  5. accessTimestamp &lt;= #value#    
  6. </delete>   
<delete id="com.fashionfree.stat.accesslog.deleteMemberAccessLogsBefore" parameterClass="long"> 
delete from 
MemberAccessLog 
where 
accessTimestamp &lt;= #value# 
</delete> 

 

    2. 将特殊字符放在xml的CDATA区内: 

Xml代码 复制代码 收藏代码
  1. <delete id="com.fashionfree.stat.accesslog.deleteMemberAccessLogsBefore" parameterClass="long">    
  2. <![CDATA[   
  3. delete from   
  4. MemberAccessLog   
  5. where   
  6. accessTimestamp <= #value#   
  7. ]]>    
  8. </delete>   
<delete id="com.fashionfree.stat.accesslog.deleteMemberAccessLogsBefore" parameterClass="long"> 
<![CDATA[ 
delete from 
MemberAccessLog 
where 
accessTimestamp <= #value# 
]]> 
</delete> 

   推荐使用第一种方式,写为&lt; 和 &gt; (XML不对CDATA里的内容进行解析,因此如果CDATA中含有dynamic标签,将不起作用) 

(9)include和sql标签
   将常用的sql语句整理在一起,便于共用: 

Xml代码 复制代码 收藏代码
  1. <sql id="selectBasicSql">    
  2. select    
  3. samplingTimestamp,onlineNum,year,    
  4. month,week,day,hour    
  5. from    
  6. OnlineMemberNum    
  7. </sql>    
  8. <sql id="whereSqlBefore">    
  9. where samplingTimestamp &lt;= #samplingTimestamp#    
  10. </sql>    
  11. <select id="com.fashionfree.accesslog.selectOnlineMemberNumsBeforeSamplingTimestamp" parameterClass="hashmap" resultClass="OnlineMemberNum">    
  12. <include refid="selectBasicSql" />    
  13. <include refid="whereSqlBefore" />    
  14. </select>   
<sql id="selectBasicSql"> 
select 
samplingTimestamp,onlineNum,year, 
month,week,day,hour 
from 
OnlineMemberNum 
</sql> 
<sql id="whereSqlBefore"> 
where samplingTimestamp &lt;= #samplingTimestamp# 
</sql> 
<select id="com.fashionfree.accesslog.selectOnlineMemberNumsBeforeSamplingTimestamp" parameterClass="hashmap" resultClass="OnlineMemberNum"> 
<include refid="selectBasicSql" /> 
<include refid="whereSqlBefore" /> 
</select> 

    注意:sql标签只能用于被引用,不能当作mapped statement。如上例中有名为selectBasicSql的sql元素,试图使用其作为sql语句执行是错误的:
    sqlMapClient.queryForList(“selectBasicSql”); ×

(10)随机选取记录

Xml代码 复制代码 收藏代码
  1. <sql id=”randomSql”>    
  2. ORDER BY rand() LIMIT #number#    
  3. </sql>   
<sql id=”randomSql”> 
ORDER BY rand() LIMIT #number# 
</sql> 

    从数据库中随机选取number条记录(只适用于MySQL)

 

(11)将SQL GROUP BY分组中的字段拼接

Xml代码 复制代码 收藏代码
  1. <sql id=”selectGroupBy>    
  2. SELECT    
  3. a.answererCategoryId, a.answererId, a.answererName,    
  4. a.questionCategoryId, a.score, a.answeredNum,    
  5. a.correctNum, a.answerSeconds, a.createdTimestamp,    
  6. a.lastQuestionApprovedTimestamp, a.lastModified, GROUP_CONCAT(q.categoryName) as categoryName    
  7. FROM    
  8. AnswererCategory a, QuestionCategory q    
  9. WHERE a.questionCategoryId = q.questionCategoryId    
  10. GROUP BY a.answererId    
  11. ORDER BY a.answererCategoryId    
  12. </sql>  
<sql id=”selectGroupBy> 
SELECT 
a.answererCategoryId, a.answererId, a.answererName, 
a.questionCategoryId, a.score, a.answeredNum, 
a.correctNum, a.answerSeconds, a.createdTimestamp, 
a.lastQuestionApprovedTimestamp, a.lastModified, GROUP_CONCAT(q.categoryName) as categoryName 
FROM 
AnswererCategory a, QuestionCategory q 
WHERE a.questionCategoryId = q.questionCategoryId 
GROUP BY a.answererId 
ORDER BY a.answererCategoryId 
</sql>

    注:SQL中使用了MySQL的GROUP_CONCAT函数

(12) 按照IN里面的顺序进行排序

    ①MySQL: 

Xml代码 复制代码 收藏代码
  1. <sql id=”groupByInArea”>    
  2. select    
  3. moduleId, moduleName,    
  4. status, lastModifierId, lastModifiedName,    
  5. lastModified    
  6. from    
  7. StatModule    
  8. where    
  9. moduleId in (3, 5, 1)    
  10. order by    
  11. instr(',3,5,1,' , ','+ltrim(moduleId)+',')    
  12. </sql>   
<sql id=”groupByInArea”> 
select 
moduleId, moduleName, 
status, lastModifierId, lastModifiedName, 
lastModified 
from 
StatModule 
where 
moduleId in (3, 5, 1) 
order by 
instr(',3,5,1,' , ','+ltrim(moduleId)+',') 
</sql> 

    

 

 

②SQLSERVER:

Xml代码 复制代码 收藏代码
  1. <sql id=”groupByInArea”>    
  2. select    
  3. moduleId, moduleName,    
  4. status, lastModifierId, lastModifiedName,    
  5. lastModified    
  6. from    
  7. StatModule    
  8. where    
  9. moduleId in (3, 5, 1)    
  10. order by    
  11. charindex(','+ltrim(moduleId)+',' , ',3,5,1,')    
  12. </sql>  
<sql id=”groupByInArea”> 
select 
moduleId, moduleName, 
status, lastModifierId, lastModifiedName, 
lastModified 
from 
StatModule 
where 
moduleId in (3, 5, 1) 
order by 
charindex(','+ltrim(moduleId)+',' , ',3,5,1,') 
</sql>

    说明:查询结果将按照moduleId在in列表中的顺序(3, 5, 1)来返回
    MySQL : instr(str, substr)
    SQLSERVER: charindex(substr, str) 
    返回字符串str 中子字符串的第一个出现位置 
    ltrim(str) 
    返回字符串str, 其引导(左面的)空格字符被删除

(13) resultMap 
   
resultMap负责将SQL查询结果集的列值映射成Java Bean的属性值。

Xml代码 复制代码 收藏代码
  1. <resultMap class="java.util.HashMap" id="getActionIdAndActionNumber">    
  2. <result column="actionId" property="actionId" jdbcType="BIGINT" javaType="long"/>    
  3. <result column="count" property="count" jdbcType="INT" javaType="int"/>    
  4. </resultMap>   
<resultMap class="java.util.HashMap" id="getActionIdAndActionNumber"> 
<result column="actionId" property="actionId" jdbcType="BIGINT" javaType="long"/> 
<result column="count" property="count" jdbcType="INT" javaType="int"/> 
</resultMap> 

   使用resultMap称为显式结果映射,与之对应的是resultClass(内联结果映射),使用resultClass的最大好处便是简单、方便,不需显示指定结果,由iBATIS根据反射来确定自行决定。而resultMap则可以通过指定jdbcType和javaType,提供更严格的配置认证。


(14) typeAlias

Xml代码 复制代码 收藏代码
  1. <typeAlias alias="MemberOnlineDuration" type="com.fashionfree.stat.accesslog.model.MemberOnlineDuration" />    
  2. <typeAlias>允许你定义别名,避免重复输入过长的名字。  
<typeAlias alias="MemberOnlineDuration" type="com.fashionfree.stat.accesslog.model.MemberOnlineDuration" /> 
<typeAlias>允许你定义别名,避免重复输入过长的名字。

 

(15) remap

Xml代码 复制代码 收藏代码
  1. <select id="testForRemap" parameterClass="hashMap" resultClass="hashMap" remapResults="true">    
  2. select    
  3. userId    
  4. <isEqual property="tag" compareValue="1">    
  5. , userName    
  6. </isEqual>    
  7. <isEqual property="tag" compareValue="2">    
  8. , userPassword    
  9. </isEqual>    
  10. from    
  11. UserInfo    
  12. </select>   
<select id="testForRemap" parameterClass="hashMap" resultClass="hashMap" remapResults="true"> 
select 
userId 
<isEqual property="tag" compareValue="1"> 
, userName 
</isEqual> 
<isEqual property="tag" compareValue="2"> 
, userPassword 
</isEqual> 
from 
UserInfo 
</select> 

   此例中,根据参数tag值的不同,会获得不同的结果集,如果没有remapResults="true"属性,iBatis会将第一次查询时的结果集缓存,下次再执行时(必须还是该进程中)不会再执行结果集映射,而是会使用缓存的结果集。
因此,如果上面的例子中remapResult为默认的false属性,而有一段程序这样书写: 

Java代码 复制代码 收藏代码
  1. HashMap<String, Integer> hashMap = new HashMap<String, Integer>();    
  2. hashMap.put("tag"1);    
  3. sqlClient.queryForList("testForRemap", hashMap);    
  4. hashMap.put("tag"2);    
  5. sqlClient.queryForList("testForRemap", hashMap);   
HashMap<String, Integer> hashMap = new HashMap<String, Integer>(); 
hashMap.put("tag", 1); 
sqlClient.queryForList("testForRemap", hashMap); 
hashMap.put("tag", 2); 
sqlClient.queryForList("testForRemap", hashMap); 

 则程序会在执行最后一句的query查询时报错,原因就是iBATIS使用了第一次查询时的结果集,而前后两次的结果集是不同的:(userId, userName)和(userId, userPassword),所以导致出错。如果使用了remapResults="true"这一属性,iBATIS会在每次执行查询时都执行结果集映射,从而避免错误的发生(此时会有较大的开销)。

(16) dynamic标签的prepend

  dynamic标签的prepend属性作为前缀添加到结果内容前面,当标签的结果内容为空时,prepend属性将不起作用。
当dynamic标签中存在prepend属性时,将会把其嵌套子标签的第一个prepend属性忽略。例如:

Xml代码 复制代码 收藏代码
  1. <sql id="whereSql">    
  2. <dynamic prepend="where ">    
  3. <isNotNull property="userId" prepend="BOGUS">    
  4. userId = #userId#    
  5. </isNotNull>    
  6. <isNotEmpty property="userName" prepend="and ">    
  7. userName = #userName#    
  8. </isNotEmpty>    
  9. </dynamic>    
  10. </sql>  
<sql id="whereSql"> 
<dynamic prepend="where "> 
<isNotNull property="userId" prepend="BOGUS"> 
userId = #userId# 
</isNotNull> 
<isNotEmpty property="userName" prepend="and "> 
userName = #userName# 
</isNotEmpty> 
</dynamic> 
</sql>

  

 

 

此例中,dynamic标签中含有两个子标签<isNotNull>和<isNotEmpty>。根据前面叙述的原则,如果<isNotNull>标签中没有prepend="BOGUS" 这一假的属性来让dynamic去掉的话,<isNotEmpty>标签中的and就会被忽略,会造成sql语法错误。
   注意:当dynamic标签没有prepend属性时,不会自动忽略其子标签的第一个prepend属性。

分享到:
评论

相关推荐

    Ibatis常用sql语句

    根据给定的文件信息,以下是对“Ibatis常用SQL语句”的详细解析,涵盖了一系列Ibatis在数据操作中的应用实例。 ### Ibatis简介 Ibatis是一个支持普通SQL查询、存储过程以及高级映射的优秀持久层框架。Ibatis可以让...

    ibatis常用sql语句

    标题与描述概述的知识点主要集中在iBATIS框架的SQL映射技术上,特别是针对不同类型的输入参数如何在iBATIS中构建SQL语句。以下是对这些知识点的详细展开: ### iBATIS SQL映射技术概览 iBATIS是早期流行的Java持久...

    ibatis常用的sql

    根据提供的文件信息,本文将对ibatis常用的SQL语句进行详细的解析与说明。这些SQL语句主要用于Oracle数据库中,涉及到了删除、插入以及查询等基本操作,并且在ibatis框架中实现了参数化处理。 ### 一、删除操作 ...

    在ibatis日志信息中打印SQL语句的方法(个人总结)

    在使用iBatis(现为MyBatis)作为持久层框架进行开发时,有时我们需要调试SQL语句,以便查看执行的SQL、优化性能或者解决查询问题。本文将详细讲解如何在iBatis日志信息中打印SQL语句,以便更好地理解和优化数据库...

    iBatis的动态SQL语句

    ### iBatis中的动态SQL语句详解 #### 引言 在进行数据库操作时,我们经常需要根据不同的条件构建不同的SQL语句。这种需求在实际开发中极为常见,尤其是在处理复杂的查询逻辑时。iBatis(现在通常被称为MyBatis)...

    WAS上log4j日志不能输出(ibatis)sql语句解决办法[借鉴].pdf

    WAS 上 log4j 日志不能输出(ibatis)sql 语句解决办法 在部署到 WAS 服务器上的 CMSII 系统中,ibatis 的 sql 语句不能输出日志的问题。解决该问题需要改变 WAS 的默认 LogFactory 实现类,使其使用 log4j 框架下...

    ibatis16个常用sql语句

    iBatis 16个常用SQL语句 iBatis是一个基于Java的持久层框架,提供了一个简洁的方式来访问和操作数据库。在iBatis中,SQL语句是通过XML文件来配置的。下面是16个常用的iBatis SQL语句,涵盖了基本的CRUD(Create、...

    打log4j日志-ibatis的sql输出

    在默认情况下,Ibatis并不会自动打印执行的SQL语句,但通过配置,我们可以使Ibatis在运行时输出SQL,这对于调试和性能分析非常有帮助。 要启用Ibatis的SQL日志记录,你需要在Ibatis的配置文件(通常为`mybatis-...

    ibatis sql 语句的编写

    ### ibatis SQL语句编写详解 #### 一、引言 在软件开发过程中,数据库操作是必不可少的一部分。Ibatis(现称为MyBatis)作为一款优秀的持久层框架,提供了非常灵活的方式来处理SQL语句,使得Java开发者能够更加...

    ibatis动态SQL标签用法

    iBatis提供了动态SQL片段的功能,可以将SQL语句拆分成小的、独立的片段,然后根据不同的条件组合这些片段生成最终的SQL语句。这可以提高代码的可重用性和灵活性。 例如,在上面的代码中,我们定义了三个动态SQL片段...

    根据MyBatis或iBatis的SQLMapper文件反向生成数据库表

    根据MyBatis或iBatis的SQLMapper文件解析生成数据库表,通常是指通过解析MyBatis或iBatis的SQLMapper文件中的SQL语句,然后根据这些SQL语句来生成对应的数据库表结构。这样的需求可能源于需要将已有的SQLMapper文件...

    ibatis-sqlmaps-2_cn

    IBATIS(现已被MyBatis取代)是Apache软件基金会的一个开源项目,它将SQL语句与Java代码分离,使开发者能够更加灵活地管理数据库查询。通过XML配置文件或者注解,开发者可以定义SQL语句、存储过程以及复杂的映射,...

    ibatis 开发指南 和 iBATIS-SqlMaps两本图书

    5. **动态SQL**:讲解如何使用iBATIS的动态元素来构建灵活的SQL语句,以应对复杂的查询需求。 6. **API使用**:介绍SqlSession、SqlSessionFactory、Executor等关键接口和类的使用方法。 7. **缓存机制**:解释...

    ibatis sql语句对条件中特殊字符% # 处理

    ### ibatis SQL语句对条件中特殊字符% # 处理 在开发过程中,经常会遇到SQL查询时需要处理字符串中的特殊字符的情况。特别是在使用类似`LIKE`这样的操作符时,如果用户输入的数据中含有`%`、`_`或`#`等特殊字符,...

    iBATIS-SqlMaps2入门代码文档

    - `&lt;sqlMap&gt;`元素指定外部映射文件的位置,用于定义具体的SQL语句和映射规则。 #### 四、总结 本文档为初学者提供了iBATIS-SqlMaps2的基础知识和实践指导。通过本文档的学习,你可以掌握如何使用iBATIS-SqlMaps2来...

    [iBATIS]sql转换工具

    iBATIS 提供了一个SQL映射框架,使得开发者可以编写静态的SQL语句,同时保留了SQL语句的全部能力。它将SQL语句与Java代码分离,通过XML或注解配置文件来定义SQL与Java方法的映射关系,以及参数模型、结果模型等。...

    webwork+ibatis+sqlserver2000

    iBATIS允许直接在SQL语句中处理复杂的查询和事务管理,同时提供了一种动态和灵活的方式来映射结果集到Java对象。 【SQL Server 2000】:这是微软发布的关系型数据库管理系统,主要用于存储、管理和检索数据。SQL ...

    iBATIS-SqlMaps-中文教程

    iBATIS是一个持久层框架,它允许开发者将SQL语句直接写在XML配置文件中,实现了SQL与Java代码的分离,简化了数据访问层的开发工作。这篇教程通过详细的讲解和实例,帮助读者理解和掌握iBATIS的核心功能和使用技巧。 ...

    查看ibatis后台sql

    通过java程序查看ibatis配置文件中的sql语句(注:无法查看变量值)

Global site tag (gtag.js) - Google Analytics