博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
关于在IBatis中返回DataSet
阅读量:4943 次
发布时间:2019-06-11

本文共 1499 字,大约阅读时间需要 4 分钟。

在一个
的讨论中
,
了解了如何在
IBatis.Net
中返回
DataSet
以及一些相关的内容
        
public
 
static
 DataSet QueryForDataSet(
string
 statementName, 
object
 paramObject)
        {
            DataSet ds 
=
 
new
 DataSet();
            ISqlMapper mapper 
=
 GetMapper();
            IMappedStatement statement 
=
 mapper.GetMappedStatement(statementName);
            
if
 (
!
mapper.IsSessionStarted)
            {
                mapper.OpenConnection();
            }
            RequestScope scope 
=
 statement.Statement.Sql.GetRequestScope(statement, paramObject, mapper.LocalSession);
            statement.PreparedCommand.Create(scope, mapper.LocalSession, statement.Statement, paramObject);
            mapper.LocalSession.CreateDataAdapter(scope.IDbCommand).Fill(ds);
            
return
 ds;
        }
在这个过程中
,
我们还可以顺便得出获得
SQL
语句的方法
        
public
 
static
 
string
 GetSql(
string
 statementName, 
object
 paramObject)
        {
            ISqlMapper mapper 
=
 GetMapper();
            IMappedStatement statement 
=
 mapper.GetMappedStatement(statementName);
            
if
 (
!
mapper.IsSessionStarted)
            {
                mapper.OpenConnection();
            }
            RequestScope scope 
=
 statement.Statement.Sql.GetRequestScope(statement, paramObject, mapper.LocalSession);
            
return
 scope.PreparedStatement.PreparedSql;
        }

下面是我对文中内容的理解

并不是所有地方都要OO,IBatisJava.NET实现中都支持Dictionary类型的对象.DataTable因为有了DataView的支持而较IDictionary具有一些优势.如果我们需要对数据进行额外的排序或者过滤操作,那么DataTable会更方便一些.因此像这种返回DataSet的方法会使得IBatis更加易用.

但同时感觉,这种方法将IBatis打开了一个缺口,似乎背离了IBatis的设计初衷——创建一个优秀的“Persistence Ignorance domain model。比如现在,我们进行一次查询,获得“Plain Old CLR Objects”,看起来输入是与数据持久化相关的,而输出则完全集中在了领域模型上。

因此,返回DataSet的方法可能会导致不好的设计,从长远来看,也模糊了IBatis的初衷和意图。

转载于:https://www.cnblogs.com/gooddasenlin/archive/2011/04/08/2009529.html

你可能感兴趣的文章
jQuery使用总结
查看>>
Oracle数据库事物隔离级别
查看>>
多变的形状
查看>>
Navicat For Mysql快捷键
查看>>
Git学习笔记4
查看>>
【Android】用Cubism 2制作自己的Live2D——官方App样例源码学习(2)!
查看>>
利用锚点制作简单索引效果
查看>>
Photoshop
查看>>
webstorm使用说明
查看>>
项目练习计划
查看>>
Xshell远程登录
查看>>
@RequestParam与@PathVariable的区别
查看>>
C语言之break和continue
查看>>
jquery.form.js使用
查看>>
LINQ to Entities 不支持 LINQ 表达式节点类型“ArrayIndex”。
查看>>
回顾2012,展望2013
查看>>
Spring中的ApplicationContextAware使用
查看>>
HDU-2067-小兔的棋盘
查看>>
监听手机录音
查看>>
hadoop的WordCount样例
查看>>