Geography, asked by hello8929, 11 months ago

What is dao and its functions

Answers

Answered by RDEEP90
1

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, the DAO provides some specific data operations without exposing details of the database.


RDEEP90: mark me
hello8929: It's not ryt
hello8929: The question is from agriculture chapter
Answered by ishita1404
2
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, the DAO provides some specific data operations without exposing details of the database. This isolation supports the single responsibility principle. It separates what data access 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).
Similar questions