博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
What is the difference between DAO and DAL?
阅读量:5973 次
发布时间:2019-06-19

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

 

 

The Data Access Layer (DAL) is the layer of a system that exists between the business logic layer and the persistence / storage layer.

A DAL might be a single class, or it might be composed of multiple Data Access Objects (DAOs).

It may have a facade over the top for the business layer to talk to, hiding the complexity of the data access logic.

It might be a third-party object-relational mapping tool (ORM) such as Hibernate.

DAL is an architectural term, DAOs are a design detail.

 

转载地址:http://umbox.baihongyu.com/

你可能感兴趣的文章
python list 线性访问和随机访问比较
查看>>
python笔记(三)---文件读写、修改文件内容、处理json、函数
查看>>
jdk安装
查看>>
[九省联考2018]IIIDX
查看>>
Mysql学习总结(10)——MySql触发器使用讲解
查看>>
C# XML与对象互相转换
查看>>
Java中如何使封装自己的类,建立并使用自己的类库?
查看>>
spring 源代码地址
查看>>
为什么是List list = new ArrayList() 而不直接用ArrayList
查看>>
mingw64环境搭建
查看>>
R中,数据标准化方法
查看>>
Batch update
查看>>
带有重复元素的旋转数组的处理
查看>>
我的人工智能机器人的游戏
查看>>
NSQ端口关系以及注意事项
查看>>
有哪些值得推荐的关于英文词根的好书?
查看>>
Intent-filter匹配规则
查看>>
MD5 加密原理(转)
查看>>
js http 请求 多个相同参数名传值
查看>>
sqlserver数据库三范式的理解
查看>>