browse: forums | FAQ
Connecting Tech Pros Worldwide

Hey there! Do you need Software Development help?

Get answers from our community of Software Development experts on BYTES! It's free.

three-tier

Newbie
 
Join Date: May 2008
Posts: 4
#1: May 20 '08
I don't understand clearly what is meant by three-tier architecture. Front end is programming language, backend is database and the middle one is business unit i suppose.what is that middle layer the so called business unit



NitinSawant's Avatar
Familiar Sight
 
Join Date: Oct 2007
Location: Goregaon, मुंबई IN :)
Posts: 215
#2: May 20 '08

re: three-tier


Search GOOGLE!!

have you searched on google yet??
NitinSawant's Avatar
Familiar Sight
 
Join Date: Oct 2007
Location: Goregaon, मुंबई IN :)
Posts: 215
#3: May 20 '08

re: three-tier


Just take a look at this
Ken Sharpe's Avatar
Newbie
 
Join Date: Jul 2008
Posts: 3
#4: Jul 1 '08

re: three-tier


Generally speaking, 3 tier apps have a display layer, business logic layer (called, creatively, a BLL), and a Data access layer (also imaginative, the DAL). I believe this architecture is basically worthless on real projects, but for the record, the display layer asks for information to display from the BLL. The BLL decides what information to access, and asks the DAL for it. the DAL decides how to get that actual information, and returns it to the BLL in the format the BLL asked for. The BLL then does some acrobatics to format the data for viewing, then the display layer displays it.
Reply