CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Dec 1999
    Posts
    4

    Two Tier,Three Tier and Multi Tier

    Hi ,
    Can anyone tell me about what Two Tier,Three tier and multi tier architecture is,
    with some suitable examples.
    Thanks
    Raju


  2. #2
    Join Date
    Jan 2000
    Location
    Denmark
    Posts
    2

    Re: Two Tier,Three Tier and Multi Tier

    The tiers refer to the number of "layers" in your system. A two-tier architecture could be where you have a client in layer 1, and the business logic (components and such) and the database access in layer 2. A three-tier architecture is where you split up client, business logic and database access into three separate layers.

    2-tier example: A web page that takes the users input, processes it in the page and inserts it into the database.

    3-tier example: Web page that takes the users input, feeds the input to a serverside component which processes it and finally commits a result to a database.

    I hope this has made it a bit clearer.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured