일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- 사양
- ads.txt
- 스마트시티
- 다음메일
- certification
- 일본대학원
- DevNet
- 5G
- 리눅스
- 한국판뉴딜
- 동시접속
- 韓国ヒップホップ
- 韓国
- 성능측정
- ios
- 일본유학
- 명령어
- 코로나바이러스
- 환경정보
- 스펙정보
- gbd-200
- move앱
- 사용자100명
- 정보처리기사
- QA
- 사양정보
- 200-301
- 4차산업
- 부자아빠가난한아빠
- JMeter
- Today
- Total
IT 컴퓨터공학 자료실
Data Access Object에 대해 본문
In computer software, a data access object (DAO) is an object that provides an abstract interface to some type of database or other persistence mechanism. By mapping application calls to the persistence layer, DAO provide some specific data operations without exposing details of the database. This isolation supports the Single responsibility principle. It separates what data accesses the application needs, in terms of domain-specific objects and data types (the public interface of the DAO), from how these needs can be satisfied with a specific DBMS, database schema, etc. (the implementation of the DAO).
컴퓨터공학에서 data access object(이하 DAO)란 추상 인터페이스에게 데이터베이스를 제공하는 object이다. DAO는 데이터베이스 안에 있는 세부적인 내용을 노출하지 않으면서 데이터를 전달하는 방식으로 작동된다. 이것은 Single responsibility principle을 지향한다.
출처 : https://en.wikipedia.org/wiki/Data_access_object
'etc.. 기타 카테고리 2 > 영어 번역 & 일본어 번역' 카테고리의 다른 글
Domain Driven Design에 대해 (0) | 2015.07.14 |
---|---|
Value Object에 대해 (0) | 2015.07.14 |
Component-based Programming에 대해 (0) | 2015.07.14 |
Cross Cutting Concerns에 대해 (0) | 2015.07.14 |
Interface Driven Programming에 대해 (0) | 2015.07.14 |