adspace


what is data access layer?

Answer Posted / mvkotekar

DAL stands for Data Access Layer one of the design patterns
used in application Design architecture. DAL used in
UI ->BL->DAL->DB

The IO from UI is passed to BL. The BL talks with DAL for
retriving and updating values in the database. DAL forms a
bridge between the Buisness Logic (BL) and the Database (DB).

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Did you use ooa/ood methodologies? Did you use design patterns?

1196