adspace


what is data access layer?

Answer Posted / dheeraj

DAL is a class which you can for talking to database. In
this case you do not need to worry about creating DB
connection, destroy db objects, connection pooling.
Everything is handled by DAL for you. You only need to
create class derived from DAL and define sored procedures
and classes for storing result from stored procedures.

This is very convenient way of talking to DB.

Is This Answer Correct ?    10 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