three-tier

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ArthiBakthavatsalam
    New Member
    • May 2008
    • 4

    three-tier

    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
    Contributor
    • Oct 2007
    • 271

    #2
    Search GOOGLE!!

    have you searched on google yet??

    Comment

    • NitinSawant
      Contributor
      • Oct 2007
      • 271

      #3
      Just take a look at this

      Comment

      • Ken Sharpe
        New Member
        • Jul 2008
        • 3

        #4
        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.

        Comment

        Working...