IBatis.Net学习笔记五--常用的查询方式

时间:2022-09-18 14:48:25

在项目开发过程中,查询占了很大的一个比重,一个框架的好坏也很多程度上取决于查询的灵活性和效率。
在IBatis.Net中提供了方便的数据库查询方式。

在Dao代码部分主要有两种方式:
1、查询结果为一个对象:

IBatis.Net学习笔记五--常用的查询方式                ISqlMapper sqlMap = sqlMapDaoSession.SqlMap;
IBatis.Net学习笔记五--常用的查询方式
IBatis.Net学习笔记五--常用的查询方式                return (Account) sqlMap.QueryForObject("GetAccountViaColumnName", accountID);
IBatis.Net学习笔记五--常用的查询方式

2、查询结果为一个列表:

IBatis.Net学习笔记五--常用的查询方式                ISqlMapper sqlMap = sqlMapDaoSession.SqlMap;
IBatis.Net学习笔记五--常用的查询方式
IBatis.Net学习笔记五--常用的查询方式                return (ArrayList)sqlMap.QueryForList("GetAccountAsHashtableResultClass", 1);
IBatis.Net学习笔记五--常用的查询方式

这两种方法同时都提供了面向泛型的重载方法。这两个方法的第一个参数对应配置文件中的select id,第二个参数表示传入查询的条件

配置文件的写法:
在IBatis.Net中提供了多种查询配置的写法,我这里列出几种比较常用的方式:
1、获得一张表的所有数据

IBatis.Net学习笔记五--常用的查询方式        <select id="GetAllAccountsAsHashMapViaResultMap"
IBatis.Net学习笔记五--常用的查询方式                        resultMap="account-hashtable-result">
IBatis.Net学习笔记五--常用的查询方式            select *
IBatis.Net学习笔记五--常用的查询方式            from Accounts
IBatis.Net学习笔记五--常用的查询方式            order by Account_ID
IBatis.Net学习笔记五--常用的查询方式        </select>

这是最简单的方式,其中resultMap是返回查询结果的形式,需要另外配置:

IBatis.Net学习笔记五--常用的查询方式        <resultMap id="account-hashtable-result" class="Hashtable">
IBatis.Net学习笔记五--常用的查询方式            <result property="Id"           column="Account_ID"/>
IBatis.Net学习笔记五--常用的查询方式            <result property="FirstName"    column="Account_FirstName"/>
IBatis.Net学习笔记五--常用的查询方式            <result property="LastName"     column="Account_LastName"/>
IBatis.Net学习笔记五--常用的查询方式            <result property="EmailAddress" column="Account_Email"/>
IBatis.Net学习笔记五--常用的查询方式        </resultMap>

表示:得到的结果的每一条记录都映射成一个Hashtable,这个Hashtable中包含四个Key(Id,FirstName......)

2、根据条件查询(简单方式):

IBatis.Net学习笔记五--常用的查询方式        <select id="GetAccountViaColumnIndex"
IBatis.Net学习笔记五--常用的查询方式                parameterClass="int"
IBatis.Net学习笔记五--常用的查询方式                resultMap="indexed-account-result">
IBatis.Net学习笔记五--常用的查询方式            select
IBatis.Net学习笔记五--常用的查询方式            Account_ID,
IBatis.Net学习笔记五--常用的查询方式            Account_FirstName,
IBatis.Net学习笔记五--常用的查询方式            Account_LastName,
IBatis.Net学习笔记五--常用的查询方式            Account_Email
IBatis.Net学习笔记五--常用的查询方式            from Accounts
IBatis.Net学习笔记五--常用的查询方式            where Account_ID = #value#
IBatis.Net学习笔记五--常用的查询方式        </select>

只有一个条件,传入参数的类型是int型,拼写sql时直接用 #value#就可以了

3、根据条件查询(较复杂方式):

IBatis.Net学习笔记五--常用的查询方式        <select id="GetAccountsDynamic" resultMap="account-result" parameterClass="Hashtable" >
IBatis.Net学习笔记五--常用的查询方式            select top $MaximumAllowed$ * from Accounts
IBatis.Net学习笔记五--常用的查询方式            <dynamic prepend="where">
IBatis.Net学习笔记五--常用的查询方式                    <isParameterPresent>
IBatis.Net学习笔记五--常用的查询方式                    <isNotEmpty prepend="and" property="FirstName" >
IBatis.Net学习笔记五--常用的查询方式                            Account_FirstName LIKE '%$FirstName$%'
IBatis.Net学习笔记五--常用的查询方式                    </isNotEmpty>
IBatis.Net学习笔记五--常用的查询方式                    <isNotEmpty prepend="and" property="LastName" >
IBatis.Net学习笔记五--常用的查询方式                            Account_LastName LIKE '%$LastName$%'
IBatis.Net学习笔记五--常用的查询方式                    </isNotEmpty>
IBatis.Net学习笔记五--常用的查询方式                    <isNotEmpty prepend="and" property="EmailAddress"  >
IBatis.Net学习笔记五--常用的查询方式                            Account_Email LIKE '%$EmailAddress$%'
IBatis.Net学习笔记五--常用的查询方式                    </isNotEmpty>
IBatis.Net学习笔记五--常用的查询方式                    </isParameterPresent>
IBatis.Net学习笔记五--常用的查询方式                </dynamic>
IBatis.Net学习笔记五--常用的查询方式                order by Account_LastName
IBatis.Net学习笔记五--常用的查询方式        </select>

传入参数是一个Hashtable,MaximumAllowed等表示的是Hashtable里的key值,用$$包含起来。
并且查询时可以根据条件是否为空动态拼写sql语句 
PS:输入参数同样可以使用Account类,注意对应的键要和类中的属性名一致(大小写也要一样)

4、多表查询
多表查询时返回参数有三种方式,一种是新建一个类,在这个类中包含这多个表的所有属性,还有一种就是直接返回Hastable就可以了:

IBatis.Net学习笔记五--常用的查询方式        <select id="GetAccountAsHashtableResultClass"
IBatis.Net学习笔记五--常用的查询方式    resultClass="HashMap">
IBatis.Net学习笔记五--常用的查询方式            select
IBatis.Net学习笔记五--常用的查询方式            a.*,b.*
IBatis.Net学习笔记五--常用的查询方式            from a,b
IBatis.Net学习笔记五--常用的查询方式            where a.Account_ID = b.Account_ID        </select>

PS:这里的HashMap实际上就是Hashtable

第三种方式是使用IBatis中的复杂属性(感谢Anders Cui 的提醒)
比如现在有两张表Account和Degree,使用Account_ID关联,那么需要在原有的基础上修改:
1、修改Account实体类,加入一个属性:

IBatis.Net学习笔记五--常用的查询方式        private Degree _degree;
IBatis.Net学习笔记五--常用的查询方式        public Degree Degree
IBatis.Net学习笔记五--常用的查询方式        {
IBatis.Net学习笔记五--常用的查询方式            get
IBatis.Net学习笔记五--常用的查询方式            {
IBatis.Net学习笔记五--常用的查询方式                return _degree;
IBatis.Net学习笔记五--常用的查询方式            }
IBatis.Net学习笔记五--常用的查询方式            set
IBatis.Net学习笔记五--常用的查询方式            {
IBatis.Net学习笔记五--常用的查询方式                _degree = value;
IBatis.Net学习笔记五--常用的查询方式            }
IBatis.Net学习笔记五--常用的查询方式        }

这样是一个1:1的关系,也可以加入IList DegreeList的属性,这样查询的结果就是一个1:n的关系

2、修改配置文件:
在resultMaps节加入:

IBatis.Net学习笔记五--常用的查询方式    <resultMap id="comresult"  class="Account" >
IBatis.Net学习笔记五--常用的查询方式      <result property="Id"           column="Account_ID"/>
IBatis.Net学习笔记五--常用的查询方式      <result property="FirstName"    column="Account_FirstName"/>
IBatis.Net学习笔记五--常用的查询方式      <result property="LastName"     column="Account_LastName"/>
IBatis.Net学习笔记五--常用的查询方式      <result property="EmailAddress" column="Account_Email" nullValue="no_email@provided.com"/>
IBatis.Net学习笔记五--常用的查询方式      <result property="Degree" column="Account_ID=Account_ID"  select="degreeretrive" />
IBatis.Net学习笔记五--常用的查询方式    </resultMap>
IBatis.Net学习笔记五--常用的查询方式

对于Degree属性,还可以加入lazyLoad=true 延迟加载,优化性能(也就是开始时并没有实际查询数据库,当用到属性Degree时,才实际的查询相应的数据)

在statements节加入:

IBatis.Net学习笔记五--常用的查询方式    <statement id="degreeretrive"
IBatis.Net学习笔记五--常用的查询方式      parameterClass="Hashtable"
IBatis.Net学习笔记五--常用的查询方式      resultClass="Degree">
IBatis.Net学习笔记五--常用的查询方式      select *
IBatis.Net学习笔记五--常用的查询方式      from Degree
IBatis.Net学习笔记五--常用的查询方式      where Account_id = #Account_ID#
IBatis.Net学习笔记五--常用的查询方式    </statement>
IBatis.Net学习笔记五--常用的查询方式
IBatis.Net学习笔记五--常用的查询方式    <select id="GetComTables"
IBatis.Net学习笔记五--常用的查询方式      resultMap="comresult">
IBatis.Net学习笔记五--常用的查询方式      select *
IBatis.Net学习笔记五--常用的查询方式      from Accounts
IBatis.Net学习笔记五--常用的查询方式      order by Account_ID
IBatis.Net学习笔记五--常用的查询方式    </select>

这样可以正确的查询出结果,符合OO,但是也有两个小问题:
1、比较麻烦,不够灵活
2、性能受影响:
    这种方式其实和Hibernet比较类似了,查询时首先执行
    select *        from Accounts        order by Account_ID
    然后根据这条语句的结果,比如有100条记录,那就要执行100次以下的语句:
    select *        from Degree        where Account_id =  @param0

关于输入输出:
从上面可以看到输入时可以使用:parameterClass和parameterMap,输出时可以使用:resultClass和resultMap
对于resultMap和parameterMap我们需要另外进行配置(如上所示)
对于parameterClass和resultClass,如果是C#固有类型可以直接使用,如果是我们自定义类可以在SqlMap.config中先统一声明一下:

IBatis.Net学习笔记五--常用的查询方式    <alias>
IBatis.Net学习笔记五--常用的查询方式        <typeAlias alias="Account" type="GSpring.Domain.Account"/>
IBatis.Net学习笔记五--常用的查询方式    </alias>

http://www.cnblogs.com/firstyi/archive/2007/08/21/863605.html

IBatis.Net学习笔记五--常用的查询方式的更多相关文章

  1. IBatis&period;Net学习笔记六--再谈查询

    在IBatis.Net学习笔记五--常用的查询方式 中我提到了一些IBatis.Net中的查询,特别是配置文件的写法. 后来通过大家的讨论,特别是Anders Cui 的提醒,又发现了其他的多表查询的 ...

  2. Java基础学习笔记&lpar;五&rpar; - 常用的API

    API介绍 概念:API 即应用编程程序接口.Java API是JDK中提供给我们使用的类说明文档,这些类将底层的代码实现封装.无需关心这些类是如何实现,只需要学习如何使用. 使用:通过API找到需要 ...

  3. MYSQL初级学习笔记五:连接查询!(视频序号:初级&lowbar;37-41&rpar;

    知识点七:连接查询(37-41) 什么是连接查询: 连接查询是将两个或两个以上的表按某个条件连接起来,从中选取需要的数据.连接查询是同时查询两个或两个以上的表时使用的.当不同的表中存在相同意义的字段时 ...

  4. Java学习笔记五 常用API对象一

    常用API:字符串操作:String类,StringBuffer类,StringBulider类 字符串是最重要的数据类型之一,处理字符串也是一种语言的基本工作. 1.String类: public ...

  5. Linux学习笔记&lpar;五&rpar; 账号管理

    1.用户与组账号 用户账号:包括实际人员和逻辑性对象(例如应用程序执行特定工作的账号) 每一个用户账号包含一个唯一的用户 ID 和组 ID 标准用户是系统安装过程中自动创建的用户账号,其中除 root ...

  6. C&num;可扩展编程之MEF学习笔记&lpar;五&rpar;:MEF高级进阶

    好久没有写博客了,今天抽空继续写MEF系列的文章.有园友提出这种系列的文章要做个目录,看起来方便,所以就抽空做了一个,放到每篇文章的最后. 前面四篇讲了MEF的基础知识,学完了前四篇,MEF中比较常用 ...

  7. C&plus;&plus;基础 学习笔记五:重载之运算符重载

    C++基础 学习笔记五:重载之运算符重载 什么是运算符重载 用同一个运算符完成不同的功能即同一个运算符可以有不同的功能的方法叫做运算符重载.运算符重载是静态多态性的体现. 运算符重载的规则 重载公式 ...

  8. (转)Qt Model&sol;View 学习笔记 &lpar;五&rpar;——View 类

    Qt Model/View 学习笔记 (五) View 类 概念 在model/view架构中,view从model中获得数据项然后显示给用户.数据显示的方式不必与model提供的表示方式相同,可以与 ...

  9. java之jvm学习笔记五&lpar;实践写自己的类装载器&rpar;

    java之jvm学习笔记五(实践写自己的类装载器) 课程源码:http://download.csdn.net/detail/yfqnihao/4866501 前面第三和第四节我们一直在强调一句话,类 ...

随机推荐

  1. &lbrack;LeetCode&rsqb; Maximum Product Subarray 求最大子数组乘积

    Find the contiguous subarray within an array (containing at least one number) which has the largest ...

  2. Print all nodes at distance k from a given node

    Given a binary tree, a target node in the binary tree, and an integer value k, print all the nodes t ...

  3. Kmin

    Kmin of Array [本文链接] http://www.cnblogs.com/hellogiser/p/kmin-of-array.html [代码]  C++ Code  12345678 ...

  4. 洛谷 P1908 逆序对 Label:归并排序&vert;&vert;树状数组 不懂

    题目描述 猫猫TOM和小老鼠JERRY最近又较量上了,但是毕竟都是成年人,他们已经不喜欢再玩那种你追我赶的游戏,现在他们喜欢玩统计.最近,TOM老猫查阅到一个人类称之为“逆序对”的东西,这东西是这样定 ...

  5. java中的断言

     断言:也就是所谓的assertion,是jdk1.4后加入的新功能. 它主要使用在代码开发和测试时期,用于对某些关键数据的判断,如果这个关键数据不是你程序所预期的数据,程序就提出警告或退出. 当软件 ...

  6. HDOJ --- 1159 Common Subsequence

    Common Subsequence Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Other ...

  7. ONLY三行脚本 SQL数据恢复到指定时间点

    经常看到有人误删数据,或者误操作,特别是Update和Delete的时候没有加WHERE ... 然后就喊爹喊娘了,怕是亲爹妈也无奈摇肩. 话说,如果没有犯过错误,那你还算是程序猿(媛)麽?!没了偶尔 ...

  8. hadoop原理

    MapReduce工作原理图文详解 前言:   前段时间我们云计算团队一起学习了hadoop相关的知识,大家都积极地做了.学了很多东西,收获颇丰.可是开学后,大家都忙各自的事情,云计算方面的动静都不太 ...

  9. 常见JS倒计时

    https://www.jb51.net/Special/356.htm  //JS倒计时  <button onclick="resetTime(60)">启动倒计时 ...

  10. &period;singleton&period;php 文件 (单例模式可被继承 代码实例)

    <?phpnamespace lib;abstract class Singleton{ //设置一个私有的静态属性作为中间变量 private static $instancePool = [ ...