CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Feb 2007
    Posts
    122

    what is the difference between MVC Model and 3-tier app ?

    what is the difference between MVC Model and 3-tier app ?

  2. #2
    dlorde is offline Elite Member Power Poster
    Join Date
    Aug 1999
    Location
    UK
    Posts
    10,163

    Re: what is the difference between MVC Model and 3-tier app ?

    Try Googling for each, and come back if you have some more specific Java questions.

    The truth is, when all is said and done, one does not teach a subject, one teaches a student how to learn it. Teaching may look like administering a dose, but even a dose must be worked on by the body if it is to cure. Each individual must cure his or her own ignorance...
    J. Barzun.
    Please use [CODE]...your code here...[/CODE] tags when posting code. If you get an error, please post the full error message and stack trace, if present.

  3. #3
    Join Date
    Feb 2007
    Posts
    122

    Re: what is the difference between MVC Model and 3-tier app ?

    each model try to separate code into 3 classes one for db layer, one for presentation (view ) and one of business operations so what is the difference?

  4. #4
    dlorde is offline Elite Member Power Poster
    Join Date
    Aug 1999
    Location
    UK
    Posts
    10,163

    Re: what is the difference between MVC Model and 3-tier app ?

    Quote Originally Posted by ahmed17
    each model try to separate code into 3 classes one for db layer, one for presentation (view ) and one of business operations...
    Three layers, not classes.

    so what is the difference?
    You basically described a 3-tier app. The MVC concept is more generic, so a 3-tier app could be considered an instance of MVC. Here is a useful link: Java App Design with MVC.

    All models are wrong; some models are useful...
    G. Box
    Please use [CODE]...your code here...[/CODE] tags when posting code. If you get an error, please post the full error message and stack trace, if present.

  5. #5
    Join Date
    Feb 2007
    Posts
    122

    Smile Re: what is the difference between MVC Model and 3-tier app ?

    Thanks.

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