| Author |
def of DAO
|
raghuram bikkani
Greenhorn
Joined: Jan 18, 2006
Posts: 16
|
|
|
WHAT IS THE meant by of DAO
|
 |
Dave Tuttle
Ranch Hand
Joined: Jan 18, 2006
Posts: 34
|
|
|
Data Access Object. It's a common design pattern.
|
 |
sammaiah kyatham
Ranch Hand
Joined: Aug 03, 2003
Posts: 102
|
|
DAO stands for Data Access Object, which contains all data base related methods. For example you want get the list of employees from Data base. class EmpDAO{ public ArrayList getEmployees(){ //Query to get all employees //Keep the data in ValueObjects //Add the valueobjects to ArrayList return theArrayList } } This design pattern helps to separates the database related code and presentation/application code. Thnx, sam
|
 |
 |
|
|
subject: def of DAO
|
|
|